2017-09-11 10:47:52 +00:00
|
|
|
{% extends "base.htm" %}
|
2017-09-13 06:41:07 +00:00
|
|
|
{% block title %}Modifica servizio • estus{% endblock %}
|
2017-09-11 10:47:52 +00:00
|
|
|
{% block content %}
|
2017-02-01 09:37:53 +00:00
|
|
|
<h1>
|
2017-09-18 14:35:42 +00:00
|
|
|
{% if action == "add" %}
|
|
|
|
Aggiungi servizio
|
|
|
|
{% elif action == "show" %}
|
|
|
|
Modifica servizio
|
|
|
|
{% endif %}
|
2017-02-01 09:37:53 +00:00
|
|
|
</h1>
|
2017-09-18 14:35:42 +00:00
|
|
|
<form class="form-inline" {% if serv %}action="/serv_show/{{serv.sid}}"{% endif %} method="post">
|
|
|
|
<select class="form-control" name="eid">
|
2017-02-01 09:37:53 +00:00
|
|
|
{% for ente in enti %}
|
2017-09-18 14:35:42 +00:00
|
|
|
<option value="{{ente.eid}}" {% if serv and serv.eid == ente.eid %}selected="selected"{% endif %}>{{ente.nomeente}}</option>
|
2017-02-01 09:37:53 +00:00
|
|
|
{% endfor %}
|
|
|
|
</select>
|
2017-09-18 14:35:42 +00:00
|
|
|
<input class="form-control" type="text" placeholder="Nome servizio" name="nomeservizio" {% if serv %}value="{{serv.nomeservizio}}"{% endif %}>
|
|
|
|
<input class="form-control" type="text" placeholder="locazione" name="locazione" {% if serv %}value="{{serv.locazione}}"{% endif %}>
|
2017-02-01 09:37:53 +00:00
|
|
|
<input class="btn btn-primary" type="submit">
|
|
|
|
</form>
|
2017-09-11 10:47:52 +00:00
|
|
|
{% endblock %}
|