add rollup/vue for frontend assets, add wip new object form (needs success/error handling)

This commit is contained in:
2021-02-14 23:20:08 +01:00
parent 780ad36696
commit b5a4900209
38 changed files with 3617 additions and 163 deletions
@@ -0,0 +1,22 @@
{% 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 %}