{# ───────────────────────────────────────────── SPB Git — Personal Git Platform ───────────────────────────────────────────── Author : Simon-Pierre Boucher Contact : contact@spboucher.ai File : src/web/views/branches.njk Purpose : Branch list with ahead/behind vs default License : MIT © Simon-Pierre Boucher ───────────────────────────────────────────── #}{% extends "layout.njk" %} {% block content %} {% include "partials/repo-header.njk" %} {% for branch in branchesDetailed %} {% else %} {% endfor %}
BranchLast commitAhead / behind {{ overview.defaultBranch }}
{{ branch.name }} {% if branch.isDefault %}default{% endif %} {{ branch.subject | truncate(60) }} · {{ branch.date | reltime }} {% if branch.isDefault %} {% else %} ↑{{ branch.ahead }} ↓{{ branch.behind }} {% endif %}
No branches yet.
{% endblock %}