{% extends 'base.html' %} {% load count %} {% block bodydata %} data-project-id="{{ project.id }}" data-project-locked="{{ project.islocked }}" {% endblock %} {% block title %} | Project: {{ project.name }} - Overview{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

Overview {% if not project.islocked %}Click here for help{% endif %}

{% with categories=project.categories.all %}

{% if project.islocked %}{% endif %} Categories {{ categories|length }} »

{% for category in categories %} {% if forloop.counter == 6 %} {% endif %} {{ category.name }}
{% with fields_count=category.fields.count %} {{ fields_count }} field{{ fields_count|pluralize }} {% endwith %}
{% empty %}
No categories have been created yet.
{% endfor %}
{% if not project.islocked %} {% endif %}
{% endwith %}
{% with subsets=project.subsets.all %}

{% if project.islocked %}{% endif %} Subsets {{ subsets|length }} »

{% for subset in subsets %} {% if forloop.counter == 6 %} {% endif %} {{ subset.name }} {% empty %}
No subsets have been created yet.
{% endfor %}
{% if not project.islocked %} {% endif %}
{% endwith %}
{% include 'snippets/project_help.html' %}

Statistics

{{ project.contributions_count }}

contribution{{ project.contributions_count|pluralize }}

{{ project.comments_count }}

comment{{ project.comments_count|pluralize }}

{{ project.media_count }}

media file{{ project.media_count|pluralize }}

{% endblock %} {% block libraries %} {% endblock %}