Monday, March 30, 2020

Re: HTML code not being read

What you passed to the context in your views.py is 'comment', but you are looping through 'comments' in the template

On Mon, Mar 30, 2020, 3:52 PM Jeff Waters <watersjg@gmail.com> wrote:
Hi

Thanks for getting back to me.

This is from my views.py:

@login_required
def add_comment(request, image_id):
    new_comment = None
    template_name = 'add_comment.html'
    image = get_object_or_404(Picture, id=image_id)
    comment = image.comment.filter(active=True)
    new_comment = None
    # Comment posted
    if request.method == 'POST':
        comment_form = CommentForm(data=request.POST)
        if comment_form.is_valid():
            # Create Comment object and don't save to database yet
            new_comment = comment_form.save(commit=False)
            # Assign the current post to the comment
            new_comment.post = post
            # Save the comment to the database
            new_comment.save()
    else:
        comment_form = CommentForm()

    context = {'comment_form': comment_form, 'image': image,'comment': comment, 'new_comment': new_comment,'comment_form': comment_form}

    return render(request, template_name, context)

Does that look correct to you?

Jeff

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7f92c0a3-07cc-4b33-ba37-e32bc24c5386%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHyB84o4GGgDBEPSo0wNFd1F%3DK9dXk3MzVjRFm%2BrmBtYOq%2BBZQ%40mail.gmail.com.

No comments:

Post a Comment