1{% extends "admin/base.html" %}
2
3{% block content %}
4
5<form method="post" class="space-y-4">
6 {{ csrf_input }}
7 <admin.InputField label="Key" field=form.key />
8 <admin.InputField label="Value" field=form.value />
9 <div class="flex justify-end">
10 <button class="mt-5" type="submit">
11 Save
12 </button>
13 </div>
14</form>
15
16{% endblock %}