mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
15 lines
607 B
HTML
15 lines
607 B
HTML
{% extends "users/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Utilisateurs{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Liste des Établissements</h2>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:add-school' %}"><i class="glyphicon glyphicon-plus"></i> Ajouter un établissement</a>
|
|
<a class="btn btn-danger btn-sm" role="button" href="{% url 'users:del-school' %}"><i class="glyphicon glyphicon-trash"></i> Supprimer un ou plusieurs établissements</a>
|
|
{% include "users/aff_schools.html" with school_list=school_list %}
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|
|
|