Browse Source

Hide Django variables from debug info

pull/160/head
Mike Olund 8 years ago
parent
commit
60a35ca78f
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      edivorce/apps/core/templates/localdev/debug.html

+ 3
- 1
edivorce/apps/core/templates/localdev/debug.html View File

@ -6,7 +6,9 @@
<body>
{% for k, v in request.META.items %}
{{ k }} = {{ v }}<br/>
{% if k.isupper %}
{{ k }} = {{ v }}<br/>
{% endif %}
{% endfor %}
</body>


Loading…
Cancel
Save