2017-09-11 10:47:52 +00:00
|
|
|
{% extends "base.htm" %}
|
2017-09-13 06:41:07 +00:00
|
|
|
{% block title %}Aggiungi ente • estus{% endblock %}
|
2017-09-11 10:47:52 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1>
|
2017-09-13 06:41:07 +00:00
|
|
|
Aggiungi nuovo ente
|
2017-09-11 10:47:52 +00:00
|
|
|
</h1>
|
|
|
|
<form class="form-inline" action="/ente_add" method="post">
|
|
|
|
<input class="form-control" type="text" placeholder="Nome ente" name="nomeente">
|
|
|
|
<input class="form-control" type="text" placeholder="Nome breve" name="nomebreveente">
|
|
|
|
<input class="btn btn-primary" type="submit">
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|