{# Display user's recent changes starting with most recent. Include icon indicating last action or a link to a diff if a text item was changed, a link to display item or deleted item, date, size, rev number, and comments. #} {% extends theme("layout.html") %} {% import "utils.html" as utils %} {% block content %}

{{ _('My Changes') }}

{% if my_changes %} {{ utils.page_links(page_num, pages, url) }}
{%- for doc in my_changes %} {% set comment = doc.comment %} {% if doc.summary %} {% set comment = comment + '`' + doc.summary + '`' %} {% endif %} {#- create an icon with a link to diff, or other icon indicating state of item #} {#- show item name or item id and old name if the item is deleted/nameless #} {% endfor %}
{{ _("Diff") }} {{ _("Name or ID ~(Old Name)") }} {{ _("Timestamp") }} {{ _("Size") }} {{ _("Rev.") }} {{ _("Comment and/or `Summary`") }}
{{ utils.item_moniker(doc, doc.fqnames) }} {{ doc.mtime|time_datetime }} {{ doc.size }} {{ doc.rev_number or doc.revid|shorten_id }} {{ comment }}
{{ utils.page_links(page_num, pages, url) }} {% else %}

{{ _("No changes found.") }}

{% endif %} {% endblock %}