Utente.Info.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {% extends 'base.html' %}
  2. {% block top %}
  3. <p>
  4. Benvenuto {{ utenteautorizzato.mail }}@{{ utenteautorizzato.domain.nome }}
  5. </p>
  6. <p>
  7. Il tuo ultimo login e' avvenuto {{ utenteautorizzato.last_panel_login }}.
  8. </p>
  9. <p>
  10. Non aggiorni la tua password dal {{ utenteautorizzato.last_password_update }}.
  11. </p>
  12. <p>
  13. I tuoi diritti in questa applicazione: {{ securitylevel.nome }}({{securityrowLen}})
  14. </p>
  15. <p>
  16. <table class='table table-striped table-hover'>
  17. <thead class='thead-dark'>
  18. <tr>
  19. <th scope='col'>Servizio</th>
  20. <th scope='col'>Attivo</th>
  21. </tr>
  22. </thead>
  23. <tbody>
  24. <tr><td>POP3</td><td>{% if utenteautorizzato.pop3 %}SI{% else %}NO{% endif %}</td></tr>
  25. <tr><td>IMAP</td><td>{% if utenteautorizzato.imap %}SI{% else %}NO{% endif %}</td></tr>
  26. <tr><td>WEBMAIL</td><td>{% if utenteautorizzato.webmail %}SI{% else %}NO{% endif %}</td></tr>
  27. <tr><td>SMTP</td><td>{% if utenteautorizzato.smtp %}SI{% else %}NO{% endif %}</td></tr>
  28. <tr><td>RELAY</td><td>{% if utenteautorizzato.smtp_relay %}SI{% else %}NO{% endif %}</td></tr>
  29. <tr><td>LMTP</td><td>{% if utenteautorizzato.lmtp %}SI{% else %}NO{% endif %}</td></tr>
  30. <tr><td>SIEVE</td><td>{% if utenteautorizzato.sieve %}SI{% else %}NO{% endif %}</td></tr>
  31. <tr><td>NEXTCLOUD</td><td>{% if utenteautorizzato.nextcloud %}SI{% else %}NO{% endif %}</td></tr>
  32. <tr><td>MAIL DI RECUPERO</td><td>{% if utenteautorizzato.mail_di_recupero %}SI{% else %}NO{% endif %}</td></tr>
  33. <tr><td>ANTIVIRUS</td><td>{% if utenteautorizzato.antivirus %}SI{% else %}NO{% endif %}</td></tr>
  34. <tr><td>BLACK LIST</td><td>{% if utenteautorizzato.blacklist %}SI{% else %}NO{% endif %}</td></tr>
  35. <tr><td>SPF CHECK</td><td>{% if utenteautorizzato.spf %}SI{% else %}NO{% endif %}</td></tr>
  36. </tbody>
  37. </table>
  38. </p>
  39. {% endblock %}
  40. {% block body %}
  41. <p>
  42. Attualmente stai occupando: {{ utenteautorizzato.mail_quota }} Mb (compreso il cestino/Trash).
  43. </p>
  44. <p>
  45. Nota: il check degli spazi occupati viene effettuato una volta a settimana.
  46. </p>
  47. {% if 'DOMAININFO' in securitylist %}
  48. <p>Dati di registrazione</p>
  49. <p>tipologia di servizi attualmente attivi</p>
  50. <p>Stato amministrativo</p>
  51. <p>Informazioni circa il dominio gestito:</p>
  52. <table = class='table'>
  53. <tbody>
  54. <tr>
  55. <th scope='row'>Occupazione Mail</th>
  56. <td>{{ dominio_mail_quota }}</td>
  57. </tr>
  58. <tr>
  59. <th scope='row'>Occupazione sito Web</th>
  60. <td>0</td>
  61. </tr>
  62. <tr>
  63. <th scope='row'>Occupazione Spazi FTP</th>
  64. <td>0</td>
  65. </tr>
  66. <tr>
  67. <th scope='row'>Occupazione SQL</th>
  68. <td>0</td>
  69. </tr>
  70. </tbody>
  71. </table>
  72. {% endif %}
  73. </p>
  74. {% endblock %}