utente.edit.document.html 961 B

123456789101112131415161718192021222324252627
  1. <div class="tab-pane fade active" id="document-pane" role="tabpanel" aria-labelledby="document-tab" tabindex="0">
  2. <!-- documenti -->
  3. <div class='form-outline mb-3 text-center btn-primary h3'>
  4. Elenco Documenti Associati
  5. </div>
  6. <hr>
  7. {% include 'documento.welcome.lista.html' %}
  8. </hr>
  9. <form name='fileManager' method="POST" enctype='multipart/form-data'>
  10. {% csrf_token %}
  11. <table class='table table-striped table-hover'>
  12. <tbody>
  13. <tr>
  14. <td><label for='descrizione'>Descrizione:&nbsp;</label>
  15. <input type='text' name='descrizione' id='descrizione' value=''>
  16. <input type='file' class="btn btn-primary" name='allegati' id='allegati' value='{{ uf.allegati }}' accept='application/pdf' multiple></td>
  17. <td><input class="btn btn-primary" type='submit' value='Inserisci'></td>
  18. </tr>
  19. </table>
  20. </form>
  21. </div>
  22. </div>