From e4a9897685b4958efb0d5bd86f57dc1584449619 Mon Sep 17 00:00:00 2001 From: CruiseDevice Date: Sat, 5 Sep 2020 16:31:29 +0530 Subject: Make Post model generic. - Fix breaking links in forum after change in models. --- yaksh/templates/yaksh/post_comments.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'yaksh/templates') diff --git a/yaksh/templates/yaksh/post_comments.html b/yaksh/templates/yaksh/post_comments.html index b16b80c..f0f1593 100644 --- a/yaksh/templates/yaksh/post_comments.html +++ b/yaksh/templates/yaksh/post_comments.html @@ -6,7 +6,7 @@ {% block content %}
- +  Back to Posts
@@ -18,7 +18,7 @@ {{post.creator.username}} {{post.created_at}} - {% if user.profile.is_moderator %}Delete{% endif %} + {% if user.profile.is_moderator %}Delete{% endif %}
@@ -41,7 +41,7 @@ {{comment.creator.username}}
- {{comment.created_at}} {% if user.profile.is_moderator %} Delete{% endif %} + {{comment.created_at}} {% if user.profile.is_moderator %} Delete{% endif %}

{{comment.description}}

@@ -59,7 +59,7 @@
Add comment: -
+
{% csrf_token %} {{form}} -- cgit