clean up templates

This commit is contained in:
Hugh Rundle
2021-10-16 08:18:55 +11:00
parent 97ea61dd7e
commit 864d8cea2b
6 changed files with 20 additions and 13 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' request.user.username %}">
{% include 'groups/form.html' with group_form=group_form %}
</form>
{% endblock %}