Loop History

{% if entries %}
{{ total }} commits {% if loop_count %} {{ loop_count }} loop {% endif %} {% if manual_count %} {{ manual_count }} manual {% endif %}
{% for entry in entries %}
{{ entry.timestamp|timeago }} {{ entry.hash }} {% if entry.is_loop %} loop {% else %} manual {% endif %}
{{ entry.message }}
{{ entry.files_changed }} file{{ 's' if entry.files_changed != 1 }} +{{ entry.insertions }} -{{ entry.deletions }}
{% if entry.tasks_completed %}
{% for task in entry.tasks_completed %}
✔ {{ task }}
{% endfor %}
{% endif %}
{% if entry.body %}

Commit message

{{ entry.body }}
{% endif %} {% if entry.changed_files %}

Changed files

{% for file in entry.changed_files %}
{{ file }}
{% endfor %}
{% endif %} {% if entry.tasks_completed %}

Tasks completed

{% for task in entry.tasks_completed %}
✔ {{ task }}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}

No git history available.

{% endif %}