Re: Django comments not showing

2008-06-16 Thread joshuajonah
{% extends "blog/index.html" %} {% load extra %} {% load comments %} {% block title %}{{ object.title|escape }}{% endblock %} {% block content %} {{ object.title }} {% if object.lead_image %}http://joshuajonah.com/ {{ object.lead_image }}" alt="{{ object.title }}" /> {% endif %}

Django comments not showing

2008-06-16 Thread joshuajonah
I have gone through the steps in: http://code.djangoproject.com/wiki/UsingFreeComment The post form is working as the comments are being added to the database. I forwards to the free_preview.html, and the preview looks fine, however, the comment_list in my template doesn't display anything. Th