{% import "macros/refs.html" as refs %} {% extends "repo/base.html" %} {% block summary_nav_class %}active{% endblock %} {% block content %} {% call refs::branch_table(refs.heads.iter().take(10)) %} {% if refs.heads.len() > 10 %} {% endif %} {% call refs::tag_table(refs.tags.iter().take(10)) %} {% if refs.tags.len() > 10 %} {% endif %} {% call refs::commit_table(commit_list.iter().take(10), true) %} {% if commit_list.len() > 10 %} {% endif %}
[...]
[...]
[...]
{% endblock %}