13 lines
166 B
HTML
13 lines
166 B
HTML
|
{% extends "layout.html" %}
|
||
|
|
||
|
<!-- TODO let's see if this works -->
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
{% include "forms.html" %}
|
||
|
|
||
|
{% include "empty_form.html" %}
|
||
|
|
||
|
{% endblock %}
|
||
|
|