{% extends "repo.html" %} {% set active_page = "branches" %} {% block title %} {% trans username=username, repository=repository %}Branches of {{ username }}/{{ repository }}{% endtrans %} {% endblock %} {% block content %}

{% trans %}Branches{% endtrans %}

{% for branch in repo.branches %}

{{ branch.name }}

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

{% trans %}Default{% endtrans %}

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

{% trans %}Tags{% endtrans %}

{% for tag in repo.tags %} {% endfor %}
{% endblock %}