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 %}
|
2017-09-20 10:01:07 +00:00
|
|
|
<div class="page-header">
|
|
|
|
<h1>
|
|
|
|
{% if action == "add" %}
|
|
|
|
Crea ente
|
|
|
|
{% elif action == "show" %}
|
|
|
|
Modifica ente
|
|
|
|
{% endif %}
|
|
|
|
</h1>
|
|
|
|
</div>
|
2017-09-21 07:29:49 +00:00
|
|
|
<form class="form-inline" method="post">
|
2017-09-18 14:18:47 +00:00
|
|
|
<input class="form-control" type="text" placeholder="Nome ente" name="nomeente" {% if ente %}value="{{ ente.nomeente }}"{% endif %}>
|
|
|
|
<input class="form-control" type="text" placeholder="Nome breve" name="nomebreveente" {% if ente %}value="{{ ente.nomebreveente }}"{% endif %}>
|
2017-09-11 10:47:52 +00:00
|
|
|
<input class="btn btn-primary" type="submit">
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|