copanier/kaba/templates/includes/modal_import_command.html
2019-03-23 21:53:33 +01:00

12 lines
529 B
HTML

{% extends "includes/modal.html" %}
{% block modal_label %}<i class="icon-paperclip"></i> Importer une commande{% endblock modal_label %}
{% block modal_body %}
<h4>Importer une commande</h4>
<p>Colonnes: ref*, wanted*</p>
<form action="/livraison/{{ delivery.id }}/importer/commande" method="post" enctype="multipart/form-data">
<input type="file" name="data">
<input type="email" name="email" placeholder="email">
<input type="submit" name="Importer">
</form>
{% endblock modal_body %}