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