{% extends "base.html" %} {% block title %}{{ name }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{# Branches table, show max 10 rows #} {% if exists("branches") %}

Branches

{% for br in branches %} {% set br_name = br.name %} {% endfor %}
Branch Commit message Author Age
{{ br_name }} {{ br.last_commit_summary }} {{ br.last_commit_author }} {{ br.last_commit_age }}
{% endif %} {# Tags table, show max 10 rows #} {% if exists("tags") %}

Tags

{% for t in tags %} {% endfor %}
Tag Download Author Age
{{ t.name }} {% if t.downloads %} {% for d in t.downloads %} {% endfor %} {% endif %} {% if t.author %}{{ t.author }}{% endif %} {% if t.age %}{{ t.age }}{% endif %}
{% endif %}
{% endblock %}