2022-05-31 23:13:44 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="post">
|
|
|
|
<div class="grid">
|
|
|
|
{% for key, value in model.values -%}
|
|
|
|
<input type="text" value="{{ value }}" name="{{ key }}" placeholder="{{ key }}" aria-label="{{ key }}"><!-- required="" -->
|
|
|
|
{%- endfor %}
|
|
|
|
<button type="submit">Save</button>
|
2022-07-17 22:12:18 +02:00
|
|
|
<button onclick="history.back()">Cancel</button>
|
2022-05-31 23:13:44 +02:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endblock content %}
|