templates/default_light/history.html
{% extends "base.html" %}
{% block tab_history_selected -%}selected{% endblock -%}
{% block content %}
< prev page
[page {{ page.page_idx }} of {{ page.pages }}]
next page >
{% endblock content %}
History
Commit
Message
Author
Date
Diff
Refs
{% for entry in history -%}
{% if entry.full_hash in commit_ids -%} {{entry.short_hash}} {% else -%}{{entry.short_hash}}{% endif -%}
{{entry.summary}}
{{entry.author.name}}
{{ts_to_date(ts=entry.ts_utc, tz=entry.ts_offset)}}
{% if entry.stats -%}{{entry.stats.files}} (+{{entry.stats.additions}}/-{{entry.stats.deletions}}){% endif -%}
{%- for ref in entry.alt_refs -%}{%- if loop.index0 < 3 -%} {{ref}} {%- endif -%}{%- endfor -%}{% if entry.alt_refs | length > 3 -%} ... {% endif -%}
{% endfor -%}