takahe/templates/activities/debug_json.html

21 lines
479 B
HTML
Raw Normal View History

2022-12-18 18:00:21 +00:00
{% extends "base.html" %}
{% block title %}Debug JSON{% endblock %}
{% block body_class %}no-sidebar{% endblock %}
{% block content %}
<form action="." method="POST">
{% csrf_token %}
<fieldset>
{% include "forms/_field.html" with field=form.uri %}
</fieldset>
<div class="buttons">
<button>Debug</button>
</div>
</form>
{% if result %}
<pre>{{ result }}</pre>
{% endif %}
{% endblock %}