I've got this form that won't display at all. The page renders
properly, right up to the submit button, but the form isn't there and
neither is the error message "No comments to display". I've looked
over the view and everything looks fine, but it just doesn't work.
Could someone take a look at it? How are you supposed to debug
something that doesn't give you any error messages?

#------------------------------------------------------------ VIEW
def fetch_individual_entry(request, slug):
    # I'm gonna shove the comment logic in here somewhere.
    error = False
    no_comment = False
    if request.method == 'POST':
        # This means that the user clicked the 'submit' button on the
only
        # form on this page. The comment entry form.
        # Tie the form to the request data.
        comment_form = CommentEntryForm(request.POST)
        data = comment_form.cleaned_data
        # Check its validity.
        if comment_form.is_valid():
            # Construct a dictionary of values to pass
            user_values = {"parent"       : data["parent_entry"],
                           "author_name"  : data["name"],
                           "author_email" : data["email"],
                           "subject"      : data["subject"],
                           "body"         : data["comment"],
                           "author_ip"    : data["ip_address"],}
            # Use that dictionary to create a comment!
            Comment(**user_values).save()
    # Otherwise...
    page = Entry.objects.get(slug__exact=slug)
    if not page:
        error = True
        return render_to_response(
            'entry_page.html', {
                'error' : error,
                'slug'  : slug,
            })
    initial_data = {'ip_address': request.META["REMOTE_ADDR"],
                    'parent_entry': page.id,}
    comment_form = CommentEntryForm(initial=initial_data)

    # Get the comments for the currently selected entry.
    comment_list = Comment.objects.filter(parent=page.id)
    if len(comment_list) == 0:
        no_comment = True

    return render_to_response(
        'entry_page.html', {
            'commentForm': comment_form,
            'commentList': comment_list,
            'noComments' : no_comment,
            'x'          : page,
        })


#------------------------------------------------------------ TEMPLATE
{% extends "base.html" %}
{% block content %}
        <ul class="entrybox">
            <div id="title_block">
                    <li><b>Title:</b>
                            <a href="/page/{{ x.slug }}">{{ x.title }}
</a></li>
                    <li><b>Date:</b> {{ x.dateTime|date }}</li>
                    <li><b>Time:</b> {{ x.dateTime|time }}</li>
                    <li><b>Subject:</b> {{ x.subject }}</li>
            </div>
            <li>{{ x.content|safe }}</li>
        </ul>
        {% for comment in commentList %}
            {% if not comment %}
                <strong>No comments to display</strong>
            {% endif %}
            <ul class="commentBox">
                <li>Name: {{ comment.author_name }}</li>
                <li>Subject: {{ comment.subject }}</li>
                <li>Submitted on: {{ comment.submission_dateTime }}</
li>
                <li>Body: {{ comment.body }}</li>
            </ul>
        {% endfor %}
        <div id="commentForm">
            <form action="/" method="POST">
                {{ commentForm.as_ul }}
            </form>
            <input type="submit" value="Submit">
        </div>
        <br />
        <br />
{% endblock %}

#------------------------------------------------------------ MODEL
class Comment(models.Model):
    parent = models.ForeignKey(Entry)
    author_name = models.CharField(max_length=100)
    author_email = models.EmailField(max_length=100)
    subject = models.CharField(max_length=120, blank=True)
    body = models.TextField(max_length=3000)

    author_ip = models.IPAddressField()
    submission_dateTime = models.DateTimeField(auto_now=True)
    is_public = models.BooleanField(default=False)
    is_removed = models.BooleanField(default=False)

    class Meta:
        ordering = ['submission_dateTime']

    def __unicode__(self):
        return author_name + submission_dateTime

#------------------------------------------------------------ FORM
class CommentEntryForm(forms.Form):
    # Comment form won't render properly. Don't know why, yet.
    parent_entry = forms.ModelChoiceField(Entry)
    name = forms.CharField(label="Name:")
    email = forms.EmailField(label="E-mail Address:")
    subject = forms.CharField(label="Subject:", max_length=75)
    comment = forms.CharField(label="Comment",widget=forms.Textarea,
                              max_length=MAX_COMMENT_LENGTH)
    honeypot = forms.CharField(required=False, label="This field is
not required.",
                               widget=forms.HiddenInput)
    ip_address = forms.IPAddressField(widget=forms.HiddenInput)

    def clean_honeypot(self):
        # The honeypot is supposed to be _empty_
        value = self.cleaned_data['honeypot']
        if value:
            raise forms.ValidationError(self.fields['honeypot'].label)
        return value

--~--~---------~--~----~------------~-------~--~----~
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 group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to