2018-06-02 17:51:53 +02:00
{% extends 'manuels/base.html' %}
{% load bootstrap4 %}
{% load static %}
{% block content %}
< div class = "row" >
2018-06-14 00:19:31 +02:00
< div class = "col-md-8 offset-md-2" >
2018-06-02 17:51:53 +02:00
< h1 > Bienvenue {{ teacher.full_name }}< / h1 >
< h2 >
{% block title %}Confirmer les listes{% endblock %}
2018-06-14 00:16:33 +02:00
< a href = "{% url 'list_books' teacher.pk %}" class = "btn btn-secondary" >
< i class = "fas fa-arrow-circle-left" > < / i >
Retour à vos listes
< / a >
2018-06-02 17:51:53 +02:00
< / h2 >
< div class = "alert alert-danger" >
2018-06-14 00:16:33 +02:00
< h4 class = "alert-heading" > < i class = "fas fa-exclamation-circle" > < / i > Danger< / h4 >
2018-06-02 17:51:53 +02:00
< p class = "mb-0" >
2018-06-14 00:19:21 +02:00
Êtes-vous < strong > certain· e< / strong > de vouloir confirmer vos listes de manuels et de fournitures ?
Cette action est < u > < strong > définitive< / strong > < / u > : vous ne ne serez plus en mesure de les modifier ensuite.
2018-06-02 17:51:53 +02:00
< / p >
< / div >
< form action = "" method = "post" class = "form" >
{% csrf_token %}
{% buttons %}
2018-06-14 00:27:37 +02:00
< button type = "submit" class = "btn btn-danger" style = "white-space: normal;" > Confirmer mes listes. Je comprends que cette action est < strong > définitive< / strong > .< / button >
2018-06-02 17:51:53 +02:00
{% endbuttons %}
< / form >
< / div >
< / div >
{% endblock %}