{% extends 'base.html' %} {% block top %}
{{ HeaderTitle }}
Azienda in elaborazione: {{ azienda.nome }}
Amministratore: {{ admin.username }}
{% endblock %} {% block body %}
{% if utente.errors %} {{ utente.errors }} {% for field in utente %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in utente.non_field_errors %}
{{ error|escape }}
{% endfor %} {% else %} Nessun Errore rilevato {% endif %}
{% csrf_token %}
Pin


Elenco Documenti Associati
{% for documento in documentiUtente %} {% endfor %}
Documento Storage Descrizione Inserimento Elimina
{{ documento.documento }} {{ documento.storage}} {{ documento.descrizione }} {{ documento.dataupload | date:'d/m/Y' }}
{% csrf_token %}


{% if listaok %} {% for l in listaok %} {% endfor %}
Documento caricato con successo
{{ l }}
{% endif %}


{% if listanotok %} {% for l in listanotok %} {% endfor %}
Documento non caricato perche già presente
{{ l }}
{% endif %}


Elenco Azioni Registrate
{% for attivita in listaAttivita %} {% endfor %}
Data Causale Utente Amministratore documento
{{ attivita.data | date:'d/m/Y H:i' }} {{ attivita.causale.nome }} {{ attivita.utente.nome }} {{ attivita.amministratore.name }} {{ attivita.documento.documento }}
{% endblock %} {% block bodybottom %} {% endblock %}