My favorites
▼
|
Sign in
django-forum
Simple Django Forum Component
Project Home
Wiki
Issues
Source
Export to GitHub
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
45
attachment: templates.diff
(787 bytes)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Index: forum_list.html
===================================================================
--- forum_list.html (revision 28)
+++ forum_list.html (working copy)
@@ -19,5 +19,7 @@
</tr>
{% endfor %}
</table>
+{% if user.is_authenticated %}
<p><a href="{% url forum_subscriptions %}">{% trans "Update Subscriptions" %}</a></p>
+{% endif %}
{% endblock %}
Index: thread.html
===================================================================
--- thread.html (revision 28)
+++ thread.html (working copy)
@@ -30,7 +30,10 @@
</ul>
{% endif %}
+{% if user.is_authenticated %}
<h2><a href="{% url forum_subscriptions %}">Update Subscriptions</a></h2>
+{% endif %}
+
<h2>Post a Reply</h2>
{% if thread.closed %}
<p>Sorry, this thread is closed. No further replies are permitted.</p>
Powered by
Google Project Hosting