batiste/django-page-cms

View on GitHub
pages/templates/pages/traduction_helper.html

Summary

Maintainability
Test Coverage
{% load pages_tags i18n %}

{% if language_error %}<p style="margin-left:0;padding-left:0">
    <strong>{% trans "Wanted language has not been translated yet." %}</strong></p>
{% else %}
    {% for p in placeholders %}
        <h4 class="translation-helper-title">{{ p.name }}</h4>
        <div class="translation-helper-placeholder">{% show_content page p.ctype lang 0 %}</div>
    {% endfor %}
{% endif %}