{% extends "core/index.html" %} {% load i18n %} {% load yauth %} {% block Title %}{% trans 'User tasks' %}{% endblock %} {% block Scripts %} {% endblock %} {% block Caption %}{% trans 'User tasks' %}{% endblock %} {% block Content %}
{% if rendered_objects %} {% load paginator %} {% url 'core:usertasks_default' tab as page_url %} {% paginator page_url pages as pg %} {{ pg }}

{% trans 'Total count' %}: {{ pages.obj_count }}

{% if tab == 'finished' %} {% elif tab == 'checked' %} {% endif %} {% if tab == 'finished' %} {% elif tab == 'checked' %} {% endif %} {% for obj in rendered_objects %} {% if tab == 'current' %} {{ obj.render_for_current }} {% elif tab == 'finished' %} {{ obj.render_for_finished }} {% else %} {% with est=obj user=request.yauser.core_user %} {% include 'core/est_for_usertasks.html' %} {% endwith %} {% endif %} {% endfor %}
{% trans 'Task' %}{% trans 'Date' %}{% trans 'Region' %} {% trans 'Comment' %} {% trans 'Correction date' %}
{{ pg }} {% else %}

{% if tab == 'current' %} {% trans 'You have no current tasks right now. Please check out the «Available» tab to get new tasks.' %} {% else %} {% trans 'No tasks are available.' %} {% endif %}

{% endif %}
{% endblock %}