Adds inline form component

This commit is contained in:
Mouse Reeve
2021-02-03 12:25:33 -08:00
parent 0ba7c60e83
commit 6ce4be7406
5 changed files with 50 additions and 27 deletions

View File

@ -0,0 +1,11 @@
{% extends 'components/inline_form.html' %}
{% block header %}
Create List
{% endblock %}
{% block form %}
<form name="create-list" method="post" action="{% url 'lists' %}">
{% include 'lists/form.html' %}
</form>
{% endblock %}