mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 15:44:19 +00:00
18 lines
744 B
HTML
18 lines
744 B
HTML
{% extends "base.htm" %}
|
|
{% block title %}Modifica ente • estus{% endblock %}
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h1>
|
|
{% if action == "add" %}
|
|
Crea ente
|
|
{% elif action == "show" %}
|
|
Modifica ente
|
|
{% endif %}
|
|
</h1>
|
|
</div>
|
|
<form class="form-inline" method="post">
|
|
<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 %}>
|
|
<input class="btn btn-primary" type="submit">
|
|
</form>
|
|
{% endblock %}
|