{% extends 'base.html' %}
{% block top %}
{{ HeaderTitle }}
Azienda in elaborazione: {{ azienda.nome }}
Amministratore: {{ admin.username }}
{% endblock %}
{% block body %}
{% endblock %}
{% block bodybottom %}
{% if listaok %}
| Documento caricato con successo |
{% for l in listaok %}
| {{ l }} |
{% endfor %}
{% endif %}
{% if listanotok %}
| Documento non caricato perche giĆ presente |
{% for l in listanotok %}
| {{ l }} |
{% endfor %}
{% endif %}
{% if listaok %}
{% for i in listaok %}
{{i }}
{% endfor %}
{% endif %}
{% if listanotok %}
{% for i in listanotok %}
{{i }}
{% endfor %}
{% endif %}
{% endblock %}