1 {% extends "catalogue/base.html" %}
4 {% load catalogue book_list wall %}
8 {% javascript 'book_list' %}
12 {% stylesheet 'book_list' %}
15 {% block titleextra %}{% trans "My page" %}{% endblock %}
18 {% block leftcolumn %}
19 {% book_list request.user %}
20 {% endblock leftcolumn %}
22 {% block rightcolumn %}
23 <div id="last-edited-list">
24 <h2>{% trans "Your last edited documents" %}</h2>
26 {% for edit_url, item in last_books %}
28 {% if edit_url|length == 2 %}
29 {# Temporary support for old-style last_books. #}
30 href="{% url 'wiki_editor' edit_url.0 edit_url.1 %}"
34 target="_blank">{{ item.title }}</a><br/><span class="date">({{ item.time|date:"H:i:s, d/m/Y" }})</span></li>
39 <h2>{% trans "Recent activity for" %} {{ request.user|nice_name }}</h2>
40 {% wall request.user 10 %}
41 {% endblock rightcolumn %}