| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!-- 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 }} </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 }} </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- <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 }} </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 -->
|