2017-09-19 07:36:39 +00:00
{% extends "base.htm" %}
{% block title %}Modifica ordine • estus{% endblock %}
{% block content %}
< h1 >
{% if action == "add" %}
Crea ordine
{% elif action == "show" %}
Modifica ordine
{% endif %}
< / h1 >
< div class = "alert alert-warning" >
2017-09-19 09:28:08 +00:00
Il campo data non è ancora < a href = "https://bugzilla.mozilla.org/show_bug.cgi?id=1366188" > correttamente supportato da Firefox< / a > e altri browser. Se il calendario non viene fuori, inserite le date nel formato AAAA-MM-GG.
2017-09-19 07:36:39 +00:00
< / div >
< form class = "form-inline" { % if order % } action = "/order_show/{{ order.oid }}" { % endif % } method = "post" >
< input class = "form-control" type = "date" placeholder = "yyyy-mm-dd" pattern = "[0-9]{4}-[0-9]{2}-[0-9]{2}" name = "data" { % if order % } value = "{{ order.data }}" { % endif % } >
< input class = "form-control" type = "text" placeholder = "Numero ordine" name = "numero_ordine" { % if order % } value = "{{ order.numero_ordine }}" { % endif % } >
2017-09-19 08:29:57 +00:00
< input class = "form-control" type = "date" placeholder = "yyyy-mm-dd" pattern = "[0-9]{4}-[0-9]{2}-[0-9]{2}" name = "garanzia" { % if order % } value = "{{ order.garanzia }}" { % endif % } >
2017-09-19 13:49:01 +00:00
< input class = "form-control" type = "text" placeholder = "Fornitore" name = "fornitore" { % if order % } value = "{{ order.fornitore }}" { % endif % } >
2017-09-19 07:36:39 +00:00
< input class = "btn btn-primary" type = "submit" >
< / form >
{% endblock %}