{% extends 'dj_audit/base.html' %} {% block title %} Request Status {% endblock %} {% block additional_styles %} {% endblock %} {% block page_content %}
{{ total_success }} Successful
{{ total_warning }} Warning
{{ total_failed }} Failed
{% for api in api_break_down %} {% endfor %}
S/N Api Endpoint Successful Requests Requests with warnings Failed Requests
{{ forloop.counter }} {{ api.path_info }} {{ api.no_success }} {{ api.no_warning }} {{ api.no_failed }}
{% if api_break_down.has_other_pages %} {% endif %} {% endblock %} {% block additional_scripts %} {% endblock %}