xmpp.chapril.org-conversejs/html/translation.html
2012-02-28 14:50:20 +01:00

22 lines
366 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% include "translation_info.html" %}
{% with object.get_checks as checks%}
{% if checks %}
<h2>{% trans "Strings to check" %}</h2>
<ul>
{% for c in checks %}
<li><a href="{{ ojbect.get_translate_url }}?type={{ c.0 }}">{{ c.1 }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
{% endblock %}