mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
372 B
14 lines
372 B
{% extends "base.html" %}
|
|
{% load i18n crispy_forms_tags %}
|
|
|
|
{% block base_content %}
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{% crispy form %}
|
|
{% if object.pk %}
|
|
<a class="btn btn-warning" href="{% url 'sapl.base:user_delete' object.pk %}">Remover usuário</a>
|
|
{% endif %}
|
|
</form>
|
|
|
|
{% endblock base_content %}
|