diff options
Diffstat (limited to 'hyperkitty/templates/user_profile.html')
-rw-r--r-- | hyperkitty/templates/user_profile.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html index f6a4d16..e84c72f 100644 --- a/hyperkitty/templates/user_profile.html +++ b/hyperkitty/templates/user_profile.html @@ -69,6 +69,11 @@ {% endif %} + <h3>Threads you have read</h3> + <img alt="Loading..." class="ajaxloader" src="{{ STATIC_URL }}img/ajax-loader.gif" /> + <div class="views"></div> + + <h3>Votes</h3> <h4>Up Votes</h4> {% if votes_up %} @@ -112,4 +117,15 @@ {% endblock %} +{% block additionaljs %} + +<script type="text/javascript"> + $(document).ready(function() { + // Load the last views + update_last_views("{% url 'user_last_views' %}"); + }); +</script> + +{% endblock %} + {# vim: set noet: #} |