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.
44 lines
1.5 KiB
44 lines
1.5 KiB
4 years ago
|
{% extends "_layout" %}
|
||
|
|
||
|
{% block title -%}
|
||
|
Define property
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block nav -%}
|
||
|
<a href="/">Home</a>
|
||
|
{%- endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
4 years ago
|
{# The parent can be either object or relation model #}
|
||
|
<h1>Add new property to {{object.describe}}</h1>
|
||
|
|
||
4 years ago
|
<form action="/model/property/create" method="POST">
|
||
4 years ago
|
<input type="hidden" name="object" value="{{object.id}}">
|
||
4 years ago
|
|
||
|
<label for="name">Name:</label>
|
||
4 years ago
|
<input type="text" id="name" name="name" value="{{old.name}}" autocomplete="off"><br>
|
||
4 years ago
|
|
||
|
<label for="optional">Optional:</label>
|
||
4 years ago
|
<input type="checkbox" name="optional" id="optional" value="true" {{opt(checked=old.optional)}} autocomplete="off">
|
||
4 years ago
|
<br>
|
||
|
|
||
|
<label for="multiple">Multiple:</label>
|
||
4 years ago
|
<input type="checkbox" name="multiple" id="multiple" value="true" {{opt(checked=old.multiple)}} autocomplete="off"><br>
|
||
4 years ago
|
|
||
|
<label for="data_type">Type:</label>
|
||
4 years ago
|
<select name="data_type" id="data_type" autocomplete="off">
|
||
4 years ago
|
<option value="String" {{selected(opt="String",val=old.data_type)}}>String</option>
|
||
|
<option value="Integer" {{selected(opt="Integer",val=old.data_type)}}>Integer</option>
|
||
|
<option value="Decimal" {{selected(opt="Decimal",val=old.data_type)}}>Decimal</option>
|
||
|
<option value="Boolean" {{selected(opt="Boolean",val=old.data_type)}}>Boolean</option>
|
||
4 years ago
|
</select><br>
|
||
|
|
||
|
<label for="default">Default:</label>
|
||
4 years ago
|
<input type="text" id="default" name="default" value="{{old.default}}" autocomplete="off"><br>
|
||
4 years ago
|
|
||
|
<input type="submit" value="Save">
|
||
|
</form>
|
||
|
|
||
|
{%- endblock %}
|