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
377 B
22 lines
377 B
{% extends "_layout" %}
|
|
|
|
{% block title -%}
|
|
Create {{model.name}}
|
|
{%- endblock %}
|
|
|
|
{% block nav -%}
|
|
<a href="/">Home</a>
|
|
{%- endblock %}
|
|
|
|
{% block content -%}
|
|
|
|
<div id="new-object-form"></div>
|
|
|
|
<script>
|
|
onLoad(() => {
|
|
// TODO populate dynamically from the database
|
|
window.app = Yopa.newObjectForm({{ form_data | json_encode | safe }})
|
|
});
|
|
</script>
|
|
|
|
{%- endblock %}
|
|
|