1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 23:54:20 +00:00
estus/templates/ente/show.html.j2
Stefano Pigozzi 1e761cdbf4 Ora vanno un po' di cose in più.
Per la precisione:
enti
servizi
impiegati
2017-02-01 10:37:53 +01:00

19 lines
834 B
Django/Jinja

<html>
<head>
<title>Modifica ente - 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>
<div class="container">
<h1>
Modifica ente
</h1>
<form class="form-inline" action="/ente_show/{{ ente.eid }}" method="post">
<input class="form-control" type="text" placeholder="Nome ente" name="nomeente" value="{{ ente.nomeente }}">
<input class="form-control" type="text" placeholder="Nome breve" name="nomebreveente" value="{{ ente.nomebreveente }}">
<input class="btn btn-primary" type="submit">
</form>
</div>
</body>
</html>