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.1 KiB
44 lines
1.1 KiB
{% extends "_layout" %}
|
|
|
|
{% block title -%}
|
|
Define relation
|
|
{%- endblock %}
|
|
|
|
{% block nav -%}
|
|
<a href="/">Home</a>
|
|
{%- endblock %}
|
|
|
|
{% block content -%}
|
|
|
|
<h1>Define new relation from "{{object.name}}"</h1>
|
|
|
|
{# TODO implement value restoration on error #}
|
|
|
|
<form action="/model/relation/create" method="POST">
|
|
<input type="hidden" name="object" value="{{object.id}}">
|
|
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" autocomplete="off"><br>
|
|
|
|
<label for="reciprocal_name">Reciprocal name:</label>
|
|
<input type="text" id="reciprocal_name" name="reciprocal_name" autocomplete="off"><br>
|
|
|
|
<label for="optional">Optional:</label>
|
|
<input type="checkbox" name="optional" id="optional" value="true" autocomplete="off">
|
|
<br>
|
|
|
|
<label for="multiple">Multiple:</label>
|
|
<input type="checkbox" name="multiple" id="multiple" value="true" autocomplete="off"><br>
|
|
|
|
<label for="related">Related object:</label>
|
|
<select name="related" id="related" autocomplete="off">
|
|
{% for m in models %}
|
|
<option value="{{ m.id }}">{{ m.name }}</option>
|
|
{% endfor %}
|
|
</select><br>
|
|
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
|
|
|
|
{%- endblock %}
|
|
|