mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-26 23:27:08 +00:00
14 lines
375 B
HTML
14 lines
375 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<div class="alert alert-warning" id="form-content">
|
|
{% csrf_token %}
|
|
{% trans "Are you sure that you want to leave this team?" %}
|
|
</div>
|
|
<button class="btn btn-danger" type="submit">{% trans "Leave" %}</button>
|
|
</form>
|
|
{% endblock %}
|