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