{% extends "projects/project_menu.html" %} {% load i18n %} {% load pagination_tags %} {% load txcommontags %} {% load permissions %} {% load txpermissions %} {% block title %}{{ block.super }} | {{ project.name }}{% endblock %} {% block breadcrumb %}{{ block.super }} » {{ project.name }}{% endblock %} {% block content_main %} {% get_permission "project_perm.submit_file" for request.user and team as "can_submit_file" %} {% get_permission "project_perm.coordinate_team" for request.user and project,team.language as "is_coordinator" %}

{% blocktrans with team.language.name as language_name and team.language.code as language_code %} Translation Teams - {{ language_name }} {% endblocktrans %}

{% if perms.projects.change_team or is_coordinator %} {% endif %}
{% if team.mainlist %} {% endif %} {% with team.coordinators.all as coordinators %} {% if coordinators %} {% endif %} {% endwith %} {% if request.user.is_authenticated and not perms.projects.submit_file and not can_submit_file and not user_access_request %} {% endif %}
{{ team.mainlist|mungify:team.mainlist }}
{% blocktrans count coordinators|length as counter %}Coordinator:{% plural %}Coordinators:{% endblocktrans %} {% for c in coordinators|slice:"0:6" %} {% if c.first_name and c.last_name %} {{ c.first_name }} {{ c.last_name }} ({{c.email|mungify:c.username}}) {% else %} {{c.email|mungify:c.username}}{% endif %}{% if not forloop.last %},{% endif %} {% endfor %}
{% trans "Become a translator:" %}
{% if team_access_requests %}

{% trans "People waiting for team membership approving:" %}

{% endif %} {% with team.members.all as members %} {% if members %}

{% trans "Team Members:" %}

{% endif %} {% endwith %}

{% trans 'History' %}

{% load tx_action_log %} {% get_log 5 as action_log for_object team %} {% if not action_log %}

{% trans 'None available' %}

{% else %} {% endif %} {% endblock %} {% block content_footer %} {% endblock %}