{% extends "repository/repository.html" %} {% block menu_log_class %}selected{% endblock %} {% block content %}
{% for commit in commits %} {% endfor %}
Author ID Message Commit time
{% if commit.author.name|length > 0 %} {{ commit.author.name }} {% else %} [anonymous] {% endif %} {{ commit.short_id }} {% if commit.message|length <= 100 %} {{ commit.message }} {% else %}
{{ commit.message[:100] }} ...
{{ commit.message }}
{% endif %}
{{ commit_time(commit.commit_time, commit.commit_time_offset)|ago }}
{% endblock %}