moviewyrm/bookwyrm/templates/groups/edit_form.html

14 lines
343 B
HTML
Raw Normal View History

2021-09-24 10:34:11 +00:00
{% extends 'components/inline_form.html' %}
{% load i18n %}
{% block header %}
{% trans "Edit Group" %}
{% endblock %}
{% block form %}
<form name="edit-group" method="post" action="{% url 'group' group.id %}">
{% include 'groups/form.html' %}
</form>
2021-12-31 01:29:06 +00:00
{% include "groups/delete_group_modal.html" with id="delete_group" %}
2021-09-24 10:34:11 +00:00
{% endblock %}