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.
22 lines
417 B
22 lines
417 B
{% extends "_layout" %}
|
|
{% import "_form_macros" as form %}
|
|
|
|
{% block title -%}
|
|
New
|
|
{%- endblock %}
|
|
|
|
{% block nav -%}
|
|
<a href="/">Index</a>
|
|
{%- endblock %}
|
|
|
|
{% block content -%}
|
|
<form action="/add" method="POST" class="Form">
|
|
<div class="Row indented">
|
|
<h1>New Record</h1>
|
|
</div>
|
|
{% include "_fields" %}
|
|
<div class="Row indented">
|
|
<button type="submit">Add</button>
|
|
</div>
|
|
</form>
|
|
{%- endblock %}
|
|
|