22 lines
492 B
HTML
22 lines
492 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "translation_info.html" %}
|
|
|
|
<h2>{% trans "Translate" %}</h2>
|
|
|
|
<p>{% blocktrans with unit.position as position %}Showing string {{ position }} out of {{ total }}.{% endblocktrans %}</p>
|
|
|
|
<form action="{{ unit.translation.get_translate_url }}" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="type" value="{{ type }}" />
|
|
<input type="hidden" name="oldpos" value="{{ unit.pos }}" />
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|