{% load url from future %}
{% load translations %}
{% load i18n %}
{% load crispy_forms_tags %}
{% trans "Language" %} |
{% trans "Status" %} |
{% trans "Checks" %} |
{% trans "Edit" %} |
{% for unit in units %}
{{ unit.translation.language }} |
{% get_state_flags unit %} |
{% show_checks unit.checks user %} |
{% trans "Edit" %} |
{% endfor %}
{% if perms.edit_check_flags %}
|
{% endif %}
{% if perms.edit_priority %}
|
{% endif %}
{% with units.0 as unit %}
{% include "unit-details.html" %}
{% with unit.get_source_comments as comments %}
{% if comments %}
{% trans "User comments" %} |
{% include "list-comments.html" %}
|
{% endif %}
{% endwith %}
{% endwith %}