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