branches.tera.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "_page.tera.html" %} {% block title %}Branches | {{ branches.repository_name }}{% endblock %} {% block content %} <article> <h1>Branches</h1> <nav class="revisions-menu"> <ul> <li><a href="/repository/{{ branches.repository_name }}">Head</a></li> <li><a href="/repository/{{ branches.repository_name }}/branches">Branches</a></li> <li><a href="/repository/{{ branches.repository_name }}/tags">Tags</a></li> <li><a href="/repository/{{ branches.repository_name }}/commits">Commits</a></li> </ul> </nav> <div class="flex_row"> <table class="tree_list flex_1"> <thead> <tr class="flex_row"> <th scope="col" class="flex_static">Type</th> <th scope="col" class="flex_1">Name</th> </tr> </thead> <tbody> {% for b in branches.branches %} <tr class="flex_row"> <td class="flex_static"><span class="badge-branch">branch</span></td> <td class="flex_1"><a href="{{ b.link }}">{{ b.name }}</a></td> </tr> {% endfor %} </tbody> </table> </div> {% endblock %}