I've modified my code a bit to try (unsuccessfully!) to get this working. My views.py is now as follows:
@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.comments.filter(active=True) new_comment = None # Comment posted if request.method == 'POST': comment_form = CommentForm(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 = {'image': image,'comment': comment, 'new_comment': new_comment,'comment_form': comment_form} return render(request, template_name, context) My html code for the gallery is now: <h2>comments</h2> {% if not comments %} No comments {% endif %} {% for comment in comment %} <div class="comments" style="padding: 10px;"> <p class="font-weight-bold"> <h4>Comment by</h4> {{ comment.user }} <span class=" text-muted font-weight-normal"> {{ comment.created_on }} </span> </p> {{ comment.body | linebreaks }} </div> {% endfor %} The problem I now have is that I now get the following error message: Reverse for 'add_comment' with arguments '('',)' not found. 1 pattern(s) tried: ['add_comment/(?P<image_id>[0-9]+)$'] Any suggestions would be much appreciated. Thanks 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+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e2212e12-d379-4bcb-8c96-eff4c89c5245%40googlegroups.com.