manuels-scolaires/manuels/templates/manuels/add_item.html

32 lines
1 KiB
HTML

{% extends 'manuels/base.html' %}
{% load bootstrap4 %}
{% load static %}
{% block content %}
<div class="row">
<div class="col-8 offset-2">
<h1>Bienvenue {{ teacher.full_name }}</h1>
<h2>
{% block title %}{{ verb }} {{ item }}{% endblock %}
<a href="{% url 'list_books' teacher.pk %}" class="btn btn-secondary">Retour à la liste des {{ item_plural }}</a>
</h2>
{% if message_template %}
<div class="alert alert-info">
{% include message_template %}
</div>
{% endif %}
<form action="" method="post" class="form">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Valider</button>
{% endbuttons %}
</form>
</div>
</div>
{% endblock %}
{% block end_js %}
<script src="{% static 'manuels/no_book.js' %}"></script>
{% endblock %}