item_borrow.html 428 B

12345678910111213141516
  1. {% extends 'hardware_provisioning/base.html' %}
  2. {% block title %}Confirmation d'emprunt - {{ block.super }}{% endblock %}
  3. {% block content %}
  4. <p>Je déclare emprunter le matériel <strong>{{item }} ({{ item.type }}</strong>) à compter de ce jour.</p>
  5. <form method='post'>{% csrf_token %}
  6. {{ form.as_p }}
  7. <input class="success button" type="submit"
  8. value="Oui oui, c'est bien ça."/>
  9. </form>
  10. {% endblock %}