{% extends "repository/repository.html" %} {% block page_title %}Log: {{ repository }}/{{ revision }}{% endblock %} {% block menu_log_class %}selected{% endblock %} {% block content %}
Author | ID | Commit time | Files | Lines |
{% if commit.author.name|length > 0 %} {{ commit.author.name }} {% else %} [anonymous] {% endif %} | {{ commit.short_id }} | {{ commit_time(commit.commit_time, commit.commit_time_offset)|ago }} | {% if commit.short_id in diff %} {{ diff[commit.short_id].stats.files_changed }} {% endif %} | {% if commit.short_id in diff %} +{{ diff[commit.short_id].stats.insertions }}/-{{ diff[commit.short_id].stats.deletions }} {% endif %} |