{% extends "base.html" %} {% block head %} {{ super() }} {% block title %} GitHubHealth: {{ repo.name }} {% endblock %} {% endblock %} {% block body %} {% block navbar %} {% endblock %} {% block header %} {{ super() }} {% endblock %} {% block content %} {% if repo is not none %}
{{ repo.name }}
{{ repo.html_table|safe }} {{ images.direction_button("image-prev", "left") }} {% for plot in repo.plots %} {% if loop.index == 1 %}
{% else %} {% endif %} {% endfor %} {{ images.direction_button("image-prev", "right") }}
{% endif %} {% endblock %} {% block error_warning %} {{ super() }} {% endblock %} {% block footer %} {{ super() }} {% endblock %} {% block scripts %} {{ super() }} {% if repo is not none %} {% for plot in repo.plots %} {% endfor %} {% endif %} {% endblock %} {% endblock %}