Flat file database editor and browser with web interface
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.
 
 
rocket-inv/templates/edit.html.tera

22 lines
428 B

{% 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 %}