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.
43 lines
1.0 KiB
43 lines
1.0 KiB
4 years ago
|
{% extends "_layout" %}
|
||
|
|
||
|
{% block title -%}
|
||
|
Define property
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block nav -%}
|
||
|
<a href="/">Home</a>
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
|
<h1>Add new property to model "{{model.name}}"</h1>
|
||
|
|
||
|
<form action="/model/property/create" method="POST">
|
||
|
<input type="hidden" name="object" value="{{object}}">
|
||
|
|
||
|
<label for="name">Name:</label>
|
||
|
<input type="text" id="name" name="name"><br>
|
||
|
|
||
|
<label for="optional">Optional:</label>
|
||
|
<input type="checkbox" name="optional" id="optional">
|
||
|
<br>
|
||
|
|
||
|
<label for="multiple">Multiple:</label>
|
||
|
<input type="checkbox" name="multiple" id="multiple"><br>
|
||
|
|
||
|
<label for="data_type">Type:</label>
|
||
|
<select name="data_type" id="data_type">
|
||
|
<option value="String" selected>String</option>
|
||
|
<option value="Integer">Integer</option>
|
||
|
<option value="Decimal">Decimal</option>
|
||
|
<option value="Boolean">Boolean</option>
|
||
|
</select><br>
|
||
|
|
||
|
<label for="default">Default:</label>
|
||
|
<input type="text" id="default" name="default"><br>
|
||
|
|
||
|
<input type="submit" value="Save">
|
||
|
</form>
|
||
|
|
||
|
{%- endblock %}
|