{% extends 'dj_audit/base.html' %} {% block title %} Request Status {% endblock %} {% block additional_styles %} {% endblock %} {% block page_content %}
{{ total_success }} Successful
{{ total_not_found }} Not Found
{{ total_failed }} Failed
{% for api in api_break_down %} {% endfor %}
S/N Api Endpoint No of Successful Request No of Failed Request No of Not Found Request
{{ forloop.counter }} {{ api.path_info }} {{ api.no_success }} {{ api.no_failed }} {{ api.no_not_found }}
{% endblock %} {% block additional_scripts %} {% endblock %}