You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
428 B
23 lines
428 B
5 years ago
|
{% extends "_layout" %}
|
||
|
{% import "_form_macros" as form %}
|
||
|
|
||
|
{% block title -%}
|
||
|
Edit
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block nav -%}
|
||
|
<a href="/">Index</a>
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
<form action="/edit/{{id}}" method="POST" class="Form">
|
||
|
<div class="Row indented">
|
||
|
<h1>Edit Record</h1>
|
||
|
</div>
|
||
|
{% include "_fields" %}
|
||
|
<div class="Row indented">
|
||
|
<button type="submit">Save</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
{%- endblock %}
|