{% extends "fargo/base.html" %} {% load render_table from django_tables2 %} {% load gadjo i18n staticfiles %} {% block content %}

{% if site_title %}{{ site_title }}{% else %}{% trans "Portfolio" %}{% endif %}

{% render_table table "fargo/table.html" %} {% if full %}

{% blocktrans count max_documents_per_user=max_documents_per_user trimmed %} The limit of {{ max_documents_per_user }} document per user is reached. You cannot add any more documents. {% plural %} The limit of {{ max_documents_per_user }} documents per user is reached. You cannot add any more documents. {% endblocktrans %}

{% else %}
{% csrf_token %} {{ form.non_field_errors }} {{ form.content.errors }}
{{ form.as_p }}
{% endif %}
{% endblock %}