{% extends "base.html" %} {% block title %}APISEEK Dashboard{% endblock %} {% block header %}APISEEK Ver. 0.2{% endblock %} {% block content %} {% for endpoint, data in stats.items() %}
{{ endpoint }}
Total Requests: {{ data.requests }}
Successful: {{ data.successful }}
Failed: {{ data.failed }}
{% if data.by_method %}
{% for method, mdata in data.by_method.items() %}
{{ method }}
{% endfor %}
{% endif %}
{% endfor %} {% endblock %}