add group templates

This commit is contained in:
Hugh Rundle
2021-09-24 07:51:51 +10:00
parent 71b1c6117c
commit 99b533510a
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{% extends 'components/inline_form.html' %}
{% load i18n %}
{% block header %}
{% trans "Create Group" %}
{% endblock %}
{% block form %}
<form name="create-group" method="post" action="{% url 'user-groups' %}">
{% include 'group/form.html' %}
</form>
{% endblock %}