| 123456789101112131415161718192021222324252627282930313233343536 |
- {% extends 'base.html' %}
- {% block top %}
- <p>
- utente che sta effettuando gli aggiornamenti {{ utenteautorizzato.mail }}@{{ utenteautorizzato.domain.nome }}
- </p>
- {% endblock %}
- {% block body %}
- <p>
- <A href= url 'Causali:CausaliEdit' 0 >Genera Una Nuova Causale</a>
- </p>
- <table class='table'>
- <thead>
- <tr>
- <th scope='col'>#</th>
- <th scope='col'>Servizio</th>
- <th scope='col'>*</th>
- </tr>
- </thead>
- <tbody>
- <form name="servizilist" method="POST">
- {% csrf_token %}
- {% for u in servizi %}
- <tr>
- <th scope='row'>{{ u.id }}</th>
- <td> <A href={% url 'Causali:CausaliEdit' u.id %}>{{ u.nome }}</a></td>
- <td>{% if u.enabled %}*{% else %}-{% endif %}</td>
- </tr>
- {% endfor %}
- </form>
- </tbody>
- {% endblock %}
|