Parent
[>]
1{% extends "base.html" %} 2 3{% block title %}branches - {{ repo }}{% endblock %} 4 5{% block breadcrumbs %} 6 7 {{ crate::hostname() }} 8 {{ repo }} 9 branches 10 11{% endblock %} 12 13{% block content %} 14branches 15 16{% if branches.is_empty() %} 17No branches. 18{% else %} 19 20 {% for branch in branches %} 21 22 {{ branch.name }} 23 {% if branch.is_default %}default{% endif %}{{ branch.date }} 24 25 {% endfor %} 26 27{% endif %} 28{% endblock %}