{% extends 'layout_repo.html' %} {% set active_page='repo' %} {% set active_repo_page='graphs' %} {% import 'macros.html' as macros %} {% block title %}{% trans %}Graphs{% endtrans %}{% endblock %} {% block content %}
{% include 'message.html' %} {% set graph_nav_bar = [ ('activities', _('Activities'), url_for_graphs(repo_path, 'activities')), ('files', _('File count'), url_for_graphs(repo_path, 'files')), ('sizes', _('Size'), url_for_graphs(repo_path, 'sizes')), ('times', _('Elapsed Time'), url_for_graphs(repo_path, 'times')), ('errors', _('Errors'), url_for_graphs(repo_path, 'errors')), ] -%}
{% for item in graph_nav_bar %} {{ item[1] }} {% endfor %}
{% block graph_body %}{% endblock %}
{% endblock %}