{% extends "layout.html" %} {% block body %}
{% if form.plural %}{% endif %} {% if form.translation %}{% endif %} {% if form.translation_one %}{% endif %} {% if form.translation_few %}{% endif %} {% if form.translation_many %}{% endif %} {% if form.translation_other %}{% endif %}
Base string{{ translated_string.base_string }}
Plural{{ translated_string.plural }}
Comment{{ translated_string.comment }}
Context{{ translated_string.context }}
Translation{{ form.translation(class_="form-control") }}
Translation one{{ form.translation_one(class_="form-control") }}
Translation few{{ form.translation_few(class_="form-control") }}
Translation many{{ form.translation_many(class_="form-control") }}
Translation other{{ form.translation_other(class_="form-control") }}
Translator Comment{{ form.translator_comment(class_="form-control") }}
{{ form.csrf_token }}
{% endblock %}