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
419 B
22 lines
419 B
{% extends "_layout" %}
|
|
|
|
{% block title -%}
|
|
Define object
|
|
{%- endblock %}
|
|
|
|
{% block nav -%}
|
|
<a href="/">Home</a>
|
|
{%- endblock %}
|
|
|
|
{% block content -%}
|
|
|
|
<h1>Define new object model</h1>
|
|
|
|
<form action="/model/object/create" method="POST">
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" value="{{old.name}}" autocomplete="off"><br>
|
|
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
|
|
{%- endblock %}
|
|
|