moviewyrm/bookwyrm/templates/groups/create_form.html

13 lines
323 B
HTML
Raw Normal View History

2021-10-15 21:18:55 +00:00
{% 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 %}