xmpp.chapril.org-conversejs/html/translate.html

22 lines
492 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% include "translation_info.html" %}
2012-02-28 15:09:03 +01:00
<h2>{% trans "Translate" %}</h2>
2012-02-28 15:36:48 +01:00
<p>{% blocktrans with unit.position as position %}Showing string {{ position }} out of {{ total }}.{% endblocktrans %}</p>
2012-02-28 15:40:08 +01:00
<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 %}