2017-02-01 09:37:53 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Modifica servizio - Inventario</title>
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="{{css}}">
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-02-01 12:08:56 +00:00
|
|
|
{% include 'nav.html.j2' %}
|
2017-02-01 09:37:53 +00:00
|
|
|
<div class="container">
|
|
|
|
<h1>
|
|
|
|
Modifica servizio
|
|
|
|
</h1>
|
|
|
|
<form class="form-inline" action="/serv_show/{{serv.sid}}" method="post">
|
|
|
|
<select class="form-control" name="eid" value="serv.eid">
|
|
|
|
{% for ente in enti %}
|
2017-02-02 08:33:54 +00:00
|
|
|
<option value="{{ente.eid}}" {% if serv.eid == ente.eid %}selected="selected"{% endif %}>{{ente.nomeente}}</option>
|
2017-02-01 09:37:53 +00:00
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
<input class="form-control" type="text" placeholder="Nome servizio" name="nomeservizio" value="{{serv.nomeservizio}}">
|
|
|
|
<input class="btn btn-primary" type="submit">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|