utente.edit.document.html 1.2 KB

123456789101112131415161718192021222324252627282930
  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><label for='privato' class='form-check-label'>Documento Privato (Visibile solo dal Dipendente).<br>File che iniziano con Emo, sempre privati!</label>
  18. <input type='checkbox' class="form-check-input" name='privato' id='privato'></td>
  19. <td><input class="btn btn-primary" type='submit' value='Inserisci' name='InserisciDocumentoButton'></td>
  20. </tr>
  21. </table>
  22. </form>
  23. </div>
  24. </div>