fedhub/templates/repo_index.html

13 lines
262 B
HTML
Raw Normal View History

2020-04-21 17:33:14 +00:00
{% extends "layout.html" %}
2020-04-20 05:21:26 +00:00
2020-04-21 17:33:14 +00:00
{% block content %}
<h1>{{ repo_name }}</h1>
2020-04-20 05:21:26 +00:00
2020-04-21 17:33:14 +00:00
<h3>branches:</h3>
<ul>
{% for branch in branches %}
2020-04-22 00:21:28 +00:00
<a href="{{ branch.url | safe }}">{{ branch.name }}</a>
2020-04-21 17:33:14 +00:00
{% endfor %}
</ul>
{% endblock %}