diff --git a/passbook/admin/templates/administration/debug/request.html b/passbook/admin/templates/administration/debug/request.html new file mode 100644 index 0000000000..a6bd04c53e --- /dev/null +++ b/passbook/admin/templates/administration/debug/request.html @@ -0,0 +1,31 @@ +{% extends "administration/base.html" %} + +{% load i18n %} +{% load utils %} + +{% block title %} +{% title %} +{% endblock %} + +{% block content %} +
+

{% trans "Request" %}

+
+ + + + + + + + + {% for key, value in request_dict.items %} + + + + + {% endfor %} + +
{% trans 'Key' %}{% trans 'Value' %}
{{ key }}{{ value }}
+
+{% endblock %}