{% extends 'registration/base_client.html' %} {% block title %}Home{% endblock %} {%block nav%} Home {% endblock%} {% block content %}
Aggiungi un documento

Usa questo bottone per creare un nuovo documento

{% csrf_token %}
{% if user.is_authenticated %} {% if user.is_staff or perms.client.approved %} {% if not empty %} {% endif %}
add
{% else %}

Il tuo utente non è ancora stato approvato.

{% endif %} {% else %}

Se hai già un account clicca login in alto a destra. Altrimenti clicca registrazione

{% endif %} {% endblock %} {% block script %} $(document).ready(function(){ $('.collapsible').collapsible(); $('.tap-target').tapTarget(); $('.modal').modal(); $('.tooltipped').tooltip(); {% if empty %} $('.tap-target').tapTarget('open'); {% endif %} }); $('*').click(function(event) { if (this === event.target) { $('.tap-target').tapTarget('close'); } }); function send(id) { var form = document.getElementById('form') var action = document.getElementById('action') action.setAttribute('value', id); form.submit() } {% endblock %}