{% load translations %}
{% load i18n %}
{% load crispy_forms_tags %}
{% load permissions %}
{% can_edit_flags user project as user_can_edit_flags %}
{% can_edit_priority user project as user_can_edit_priority %}
{% trans "Language" %} |
{% trans "Status" %} |
{% trans "Checks" %} |
{% trans "Edit" %} |
{% for unit in units %}
{{ unit.translation.language }} |
{% get_state_flags unit %} |
{% show_checks unit.translation.subproject.project unit.checks user %} |
{% trans "Edit" %} |
{% endfor %}
{% if user_can_edit_flags %}
|
{% endif %}
{% if user_can_edit_priority %}
|
{% endif %}
{% with units.0 as unit %}
{% include "unit-details.html" %}
{% with unit.get_source_comments as comments %}
{% if comments %}
{% trans "User comments" %} |
{% with next as next_url %}
{% include "list-comments.html" %}
{% endwith %}
|
{% endif %}
{% endwith %}
{% endwith %}