mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-24 18:31:26 +01:00
12 lines
326 B
HTML
12 lines
326 B
HTML
{% extends 'extends/offcanvas.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}{% translate 'Edit account group' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<form hx-post="{% url 'account_group_edit' pk=account_group.id %}" hx-target="#generic-offcanvas" novalidate>
|
|
{% crispy form %}
|
|
</form>
|
|
{% endblock %}
|