Re: what's wrong with my django comments?

2008-09-04 Thread nonight
Oh, it's OK, I droped the database and rebuilt the database. On 9月4日, 下午1时26分, nonight <[EMAIL PROTECTED]> wrote: > no, the comments system is new ,not upgrading from the old style. > > On 9月4日, 上午10时18分, Joshua Jonah <[EMAIL PROTECTED]> wrote: > > > Did you u

Re: what's wrong with my django comments?

2008-09-03 Thread nonight
no, the comments system is new ,not upgrading from the old style. On 9月4日, 上午10时18分, Joshua Jonah <[EMAIL PROTECTED]> wrote: > Did you upgrade the comments system from the old style? > > looks like a reverse issue. > > nonightwrote: > > I have add (r'^comments/', include('django.contrib.comments

Re: how can i find the mail i have send in this group?

2008-09-03 Thread nonight
Oh, thx! On 9月4日, 上午10时13分, Joshua Jonah <[EMAIL PROTECTED]> wrote: > Search for your name in the google group search. > > nonight wrote: > > how can i find the mail i have send in this group? --~--~-~--~~~---~--~~ You received this me

Re: what's wrong with my django comments?

2008-09-03 Thread nonight
Yes, i have removed the pyc files from the the comments directory, but there is nothing diffrence. On 9月3日, 下午11时55分, Thejaswi Puthraya <[EMAIL PROTECTED]> wrote: > On Sep 3, 8:14 pm, nonight <[EMAIL PROTECTED]> wrote: > > > I have add (r'^comments/', include(&

how can i find the mail i have send in this group?

2008-09-03 Thread nonight
how can i find the mail i have send in this group? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this grou

what's wrong with my django comments?

2008-09-03 Thread nonight
I have add (r'^comments/', include('django.contrib.comments.urls')) in the urls.py the codes in the template: {% load comments %} {% render_comment_form for user %} the error was : Caught an exception while rendering: No module named urls Original Traceback (most recent call last): File "/usr

Re: simple form question

2008-08-23 Thread nonight
have a study. On 8月21日, 下午6时56分, patrickk <[EMAIL PROTECTED]> wrote: > you could use modelforms, > seehttp://www.djangoproject.com/documentation/modelforms/ > > or without modelforms: > > class MyForm(forms.Form): > > def __init__(self, user, *args, **kwargs): > self.user = user >