{% extends "catalogue/base.html" %} {% load i18n %} {% load pagination_tags %} {% load set_get_parameter catalogue %} {% block extrabody %} {{ block.super }} {% endblock %} {% block leftcolumn %}
{% if not viewed_user %} {% endif %} {% autopaginate books 100 %} {% if not books %} {% endif %} {% for item in books %} {% with item.book as book %} {% ifequal item.book_length 1 %} {% with item.chunks.0 as chunk %} {% endwith %} {% else %} {% for chunk in item.chunks %} {% if not viewed_user %} {% endif %} {% endfor %} {% endifequal %} {% endwith %} {% endfor %}
{% trans "No books found." %}
[B] [c] {{ book.title }} {% if chunk.stage %} ({{ chunk.stage }}) {% else %}– {% endif %} {% if chunk.user %}{{ chunk.user.first_name }} {{ chunk.user.last_name }}{% endif %}
[B] {{ book.title }}
[c] {{ chunk.number }}. {{ chunk.comment }} {% if chunk.stage %} {{ chunk.stage }} {% else %} – {% endif %}{% if chunk.user %} {{ chunk.user.first_name }} {{ chunk.user.last_name }} {% else %} {% endif %}
{% paginate %}
{% endblock leftcolumn %} {% block rightcolumn %}

{% trans "Your last edited documents" %}

    {% for slugs, item in last_books %}
  1. {{ item.title }}
    ({{ item.time|date:"H:i:s, d/m/Y" }})
  2. {% endfor %}
{% if viewed_user %}

{% trans "Recent activity for" %} {{ viewed_user }}

{% wall viewed_user %} {% else %}

{% trans "Recent activity" %}

{% wall %} {% endif %} {% endblock rightcolumn %}