{# 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 %}
{{ _("Diff") }} | {{ _("Name or ID ~(Old Name)") }} | {{ _("Timestamp") }} | {{ _("Size") }} | {{ _("Rev.") }} | {{ _("Comment and/or `Summary`") }} |
---|---|---|---|---|---|
{{- utils.item_status_icon(doc.fqnames[0], doc, None) -}} | {#- show item name or item id and old name if the item is deleted/nameless #}{{ utils.item_moniker(doc, doc.fqnames) }} | {{ doc.mtime|time_datetime }} | {{ doc.size }} | {{ doc.rev_number or doc.revid|shorten_id }} | {{ comment }} |
{{ _("No changes found.") }}
{% endif %} {% endblock %}