{% extends "repo.html" %} {% block title %} Branches of {{ username }}/{{ repository }} {% endblock %} {% block content %}

Branches

{% for branch in repo.branches %}

{{ branch.name }}

{% if repoData.defaultBranch == branch.name %}

Default

{% endif %} {{ branch.commit.hexsha }}
View tree
{% endfor %}

Tags

{% for tag in repo.tags %}

{{ tag.name }}

{{ tag.commit.hexsha }}
View tree
{% endfor %}
{% endblock %}