mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
21 lines
479 B
HTML
21 lines
479 B
HTML
|
{% 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 %}
|