forked from mirrors/bookwyrm
13 lines
343 B
HTML
13 lines
343 B
HTML
{% 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>
|
|
{% include "groups/delete_group_modal.html" with id="delete_group" %}
|
|
{% endblock %}
|