{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block content_title %}

{{ title }}

{% endblock %} {% block content %}

Configuration

Channel:
{{ config.channel }}
Source language:
{{ config.source_language }}
Target languages:
{{ config.target_languages|join:", " }}
Scope:
{% if config.scope == "all" %}All {{ config.entity_type }}s {% elif config.scope == "content_type" %}{{ config.entity_type }}s of type "{{ config.content_type_slug }}" {% else %}Single draft: {{ config.draft_uid }} {% endif %}
{% if config.force %}
Force:
Yes (overwrite existing)
{% endif %} {% if config.publish %}
Auto-publish:
Yes
{% endif %}
{% if estimate.per_language %}

Cost estimate per language

{% for lang in estimate.per_language %} {% endfor %}
Language Items Characters Cost (USD)
{{ lang.language }} {{ lang.items }} {{ lang.chars }} {% if lang.cost_usd %}${{ lang.cost_usd }}{% else %}-{% endif %}
Total {{ estimate.estimated_items|default:estimate.items }} {{ estimate.total_chars }} {% if estimate.estimated_cost_usd %}${{ estimate.estimated_cost_usd }}{% else %}-{% endif %}
{% endif %} {% if estimate.skipped_drafts %}

{{ estimate.skipped_drafts }} draft(s) skipped (already translated, use Force to re-translate).

{% endif %} {% if estimate.per_draft %}

Per-draft breakdown

{% for draft in estimate.per_draft %} {% endfor %}
Draft UID Items Characters
{{ draft.draft_name }} {{ draft.draft_uid }} {{ draft.items }} {{ draft.chars }}
{% endif %} {% if estimate.existing_translations %}

Existing translations: {{ estimate.existing_translations|join:", " }}

{% endif %}
{% csrf_token %}
Back to configuration
{% endblock %}