{% extends "base.html" %} {% block content %}

Branches

Existing Branches

{% if branches %}
{% for b in branches %}
{% if b.name == head %} {% else %} {% endif %}
{{ b.name }} {% if b.commit_id %} {{ b.commit_id[:12] }} {% endif %} {% if b.name == head %} HEAD {% endif %}
{% if b.name != head %}
{% endif %}
{% endfor %}
{% else %}
No branches found.
{% endif %}

Create Branch

Merge Branch

{% endblock %}