| 123456789101112131415161718192021222324252627282930313233 |
- {% extends 'base.html' %}
- {% block body %}
- <form name="comunicazione" method="POST">
- <table class='table table-striped table-hover'>
- <thead class='thead-dark'>
- <tr>
- <th scope='col'>From</th>
- <th scope='col'>Soggetto</th>
- </tr>
- </thead>
- <tbody>
- {% csrf_token %}
- {% for az in comunicazione %}
- <tr>
- <td> {{ az.from }} </td>
- <td> {{ az.soggetto }}</td>
- <td><button type="submit" class='btn btn-primary' name="utenti" value="{{ az.id }}">Edit</button></td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- <div>
- <input type='submit' class='btn btn-primary' name='nuovo' value='nuovo'>
- <input type='reset' class='btn btn-primary' name='reset' value='reset'>
- <input type='submit' class="btn btn-primary" name="ritorna" value="Ritorna">
- </td>
- </form>
- {% endblock %}
- {% block bodybottom %}
- {% endblock %}
|