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