Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}commits - {{ repo }}{% endblock %} 4{% block og_title %}commits - {{ repo }}{% endblock %} 5{% block og_description %}commit history for {{ repo }}{% endblock %} 6 7{% block breadcrumbs %} 8 9 {{ crate::hostname() }} 10 {{ repo }} 11 commits 12 13{% endblock %} 14 15{% block content %} 16commits 17 18{% if commits.is_empty() %} 19No commits. 20{% else %} 21 22 {{ graph_svg|safe }} 23 24 {% for commit in commits %} 25 26 {% for r in commit.refs %}{{ r.name }} {% endfor %}{{ commit.message }} 27 {{ commit.sha[..8] }} 28 {{ commit.date }} 29 30 {% endfor %} 31 32 33 34 {% if has_prev %}< newer{% else %}{% endif %} 35 {% if has_next %}older >{% else %}{% endif %} 36 37{% endif %} 38{% endblock %}