mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 19:42:37 +02:00
10 lines
441 B
HTML
10 lines
441 B
HTML
{% extends "includes/modal.html" %}
|
|
|
|
{% block modal_label %}<i class="icon-hazardous"></i> Ajouter une commande{% endblock modal_label %}
|
|
{% block modal_body %}
|
|
<form action="/livraison/{{ delivery.id }}/commander">
|
|
<h4>Ajouter une commande pour quelqu'un d'autre</h4>
|
|
<input type="email" name="email" placeholder="Courriel" required>
|
|
<input type="submit" value="Commander">
|
|
</form>
|
|
{% endblock modal_body %}
|