| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!-- Modal -->
- <div class="modal fade" id="StatoDocumentiCaricatiId" tabindex="-1" role="dialog" aria-labelledby="StatoDocumentiCaricati" aria-hidden="false">
- <div class="modal-dialog modal-xl" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <h5 class="modal-title" id="SdcLabel">Stato Documenti Caricati</h5>
- </div>
- <div class="modal-body">
- {% if listaok %}
- <div>Sono stati caricati {{ listaoklen }} documento/i</div>
- <table class='table table-striped table-hover'>
- <thead class='thead-dark'>
- <tr>
- <th scope='col'>Documento caricato con successo</th>
- </tr>
- </thead>
- <tbody>
- {% for l in listaok %}
- <tr>
- <td> {{ l.documento }} - {{ l.n }} {{ l.c }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- {% endif %}
- <div><br></div>
- {% if listanotok %}
- <div>Sono stati rifiutati {{ listanotoklen }} documento/i</div>
- <table class='table table-striped table-hover'>
- <thead class='thead-dark'>
- <tr>
- <th scope='col'>Documento non caricato perche già presente</th>
- </tr>
- </thead>
- <tbody>
- {% for l in listanotok %}
- <tr>
- <td> {{ l.documento }} - {{ l.n }} {{ l.c }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- {% endif %}
- {% if listanotass %}
- <div>Non sono stati caricati {{ listanotasslen }} documento/i</div>
- <table class='table table-striped table-hover'>
- <thead class='thead-dark'>
- <tr>
- <th scope='col'>Documenti Non validi o non associabili</th>
- </tr>
- </thead>
- <tbody>
- {% for l in listanotass %}
- <tr>
- <td>{{ l.documento }} {{ l.n }} {{ l.c }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- {% endif %}
- <div class="modal-footer">
- <form name='SDCModal' method='POST'>
- {% csrf_token %}
- <button type="button" class="btn btn-primary" data-bs-dismiss="modal">Chiudi/Annulla</button>
- </form>
- </div>
- </div>
- </div>
- </div>
- <!-- end modal -->
|