summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/user_profile.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/user_profile.html')
-rw-r--r--hyperkitty/templates/user_profile.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html
index c7d7550..1d25499 100644
--- a/hyperkitty/templates/user_profile.html
+++ b/hyperkitty/templates/user_profile.html
@@ -21,6 +21,7 @@
<li><a href="#favorites">Favorites</a></li>
<li><a href="#views">Threads you have read</a></li>
<li><a href="#votes">Votes</a></li>
+ <li><a href="#subscriptions">Subscriptions</a></li>
</ul>
<div id="account">
@@ -37,6 +38,16 @@
<th>{% trans 'Email:' %}</th>
<td>{{ user.email }}</td>
</tr>
+ {% if emails %}
+ <tr>
+ <th>{% trans 'Other emails:' %}</th>
+ <td><ul>
+ {% for email in emails %}
+ <li>{{ email }}</li>
+ {% endfor %}
+ </ul></td>
+ </tr>
+ {% endif %}
{% if use_mockups %}
<tr>
<th>{% trans 'Karma:' %}</th>
@@ -91,6 +102,11 @@
<div class="ajaxcontent"></div>
</div>
+
+ <div id="subscriptions">
+ {% include "fragments/user_subscriptions.html" %}
+ </div>
+
</div>
</div>