Re: Django Comments Form not Displaying

2012-02-12 Thread coded kid
Thanks guys. @matias I tried your solution, and the post button appeared. After clicking on it, I get 'COMMENT POST NOT ALLOWED (404)' Please whats wrong? On Feb 12, 4:37 pm, Matías Aguirre wrote: > Excerpts from Michael P. Soulier's message of 2012-02-12 14:16:26 -0200: > > > > > > > On 12/02/

Re: Django Comments Form not Displaying

2012-02-12 Thread Matías Aguirre
Excerpts from Michael P. Soulier's message of 2012-02-12 14:16:26 -0200: > On 12/02/12 coded kid said: > > > Below is the codes in my comments/form.html > > {% load comments i18n %} > > {% csrf_token > > %} > > {% if next %} > value="{{ next }}" />{% endif %} > > {% for field in form %} > >

Re: Django Comments Form not Displaying

2012-02-12 Thread Michael P. Soulier
On 12/02/12 coded kid said: > Below is the codes in my comments/form.html > {% load comments i18n %} > {% csrf_token > %} > {% if next %} value="{{ next }}" />{% endif %} > {% for field in form %} > {% if field.is_hidden %} > {{ field }} > {% else %} > {% if field.errors %}

Django Comments Form not Displaying

2012-02-12 Thread coded kid
Hi guys, please help me out with django-comments form. I added : 'django.contrib.comments', to INSTALLED APPS (r'^comments/', include('django.contrib.comments.urls')), to urls.py and I copied the default templates from django.contrib.comments.templates.comments to my app templates directory. Af