2021-10-15 17:18:55 -04:00
|
|
|
{% extends 'components/inline_form.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block header %}
|
2022-03-10 13:49:33 -05:00
|
|
|
{% trans "Create group" %}
|
2021-10-15 17:18:55 -04:00
|
|
|
{% 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 %}
|