2017-09-11 10:47:52 +00:00
|
|
|
{% extends "base.htm" %}
|
2017-09-13 06:41:07 +00:00
|
|
|
{% block title %}Modifica ente • estus{% endblock %}
|
2017-09-11 10:47:52 +00:00
|
|
|
{% block content %}
|
|
|
|
<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>
|
|
|
|
{% endblock %}
|