{% extends "projects/project_detail_childs.html" %}
{% load i18n %}
{% load permissions %}
{% load txcommontags %}
{% block breadcrumb %}
{% homelink %} »
{% trans "Projects" %}
» {{project}}
{% if resource %} » {{resource}}{% endif %}
» {% blocktrans with target_language.name as lang %}Translate to {{ lang }}{% endblocktrans %}
{% endblock %}
{% block extra_head %}
{% get_permission "project_perm.proofread" for request.user and resource.project,target_language as "is_reviewer" %}
{% endblock %}
{% block title %}
{{ block.super }} |
{{resource}}
{% endblock %}
{% block body_class %}project_list{% endblock %}
{% block content %}
{% get_permission "project_perm.proofread" for request.user and resource.project,target_language as "is_reviewer" %}
|
|
{% trans "Source String" %} |
{% trans "Translation" %} |
|
|
{% if is_reviewer %}
|
{% endif %}
{% endblock %}
{% block content_footer %}
{% endblock %}