branches.njk

---
pagination:
  data: branches
  size: 1
  alias: branchInfo
permalink: "repos/{{branchInfo.repoName | slugify}}/branches/{{branchInfo.branchName | slugify}}/list/"
navTab: branches
---
<ul>
{% for branch in branches %}
  {% set description = darcsConfig.repos[branch.repoName].branches[branch.branchName].description %}
  <li><a href="/repos/{{branch.repoName | slugify}}/branches/{{branch.branchName | slugify}}">{{branch.branchName}}</a>{% if branch.branchName == branchInfo.branchName %} (current){% endif %}{% if description %} - {{ description }}{% endif %}</li>
{% endfor %}
</ul>