Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}{{ sha[..8] }} - {{ repo }}{% endblock %} 4{% block og_title %}{{ sha[..8] }} - {{ repo }}{% endblock %} 5{% block og_description %}{{ message }}{% endblock %} 6 7{% block breadcrumbs %} 8 9 {{ site.site_name }} 10 {{ repo }} 11 commits 12 {{ sha[..8] }} 13 14{% endblock %} 15 16{% block content %} 17{{ sha[..8] }} 18 19 20 Archive 21 22 {{ repo }}-{{ sha[..8] }}.tar.gztar.gz 23 {{ repo }}-{{ sha[..8] }}.tar.xztar.xz 24 {{ repo }}-{{ sha[..8] }}.zipzip 25 26 27 28 29 30 31 Tree 32 [{{ sha[..8] }}] 33 [>] 34 35 36 37{% if !refs.is_empty() %} 38 39 refs 40 {% for r in refs %}{{ r.name }}{% endfor %} 41 42{% endif %} 43 44 45 commit{{ sha }} 46 parent{% if parents.len() != 1 %}s{% endif %} 47 {% for (parent_sha, _) in parents %}{{ parent_sha }}{% endfor %} 48 author{{ author }} 49 date{{ date }} 50 51 52 53 committer{{ committer }} 54 date{{ committer_date }} 55 56 57{% if files_changed > 0 || lines_added > 0 || lines_removed > 0 %} 58 59 changes{{ files_changed }} 60 insertions{{ lines_added }} 61 deletions{{ lines_removed }} 62 63{% endif %} 64 65{% if !message.is_empty() %} 66{{ message }} 67{% endif %} 68 69{% if files_changed > 0 || lines_added > 0 || lines_removed > 0 %} 70 71{% for fc in file_changes %} 72 73 {{ fc.change_type }}{{ fc.path }} 74 {% if !fc.hunks.is_empty() %} 75 {% for hunk in fc.hunks %}{% for line in hunk %}{{ line.marker }}{{ line.content }}{% endfor %}{% endfor %} 76 {% endif %} 77 78{% endfor %} 79 80{% endif %} 81{% endblock %}