13 lines
433 B
HTML
13 lines
433 B
HTML
{% 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>
|
|
<button onclick="history.back()">Cancel</button>
|
|
</div>
|
|
</form>
|
|
{% endblock content %} |