moviewyrm/bookwyrm/templates/groups/create_form.html
2021-09-24 15:04:52 +10:00

14 lines
269 B
HTML

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