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

22 lines
366 B
HTML
Raw Normal View History

2012-02-27 11:34:32 +01:00
{% extends "base.html" %}
2012-02-27 11:58:55 +01:00
{% load i18n %}
2012-02-27 11:34:32 +01:00
{% block content %}
2012-02-28 13:17:56 +01:00
{% include "translation_info.html" %}
2012-02-27 11:34:32 +01:00
2012-02-28 14:50:20 +01:00
{% with object.get_checks as checks%}
{% if checks %}
<h2>{% trans "Strings to check" %}</h2>
<ul>
{% for c in checks %}
2012-02-28 14:55:34 +01:00
<li><a href="{{ object.get_translate_url }}?type={{ c.0 }}">{{ c.1 }}</a></li>
2012-02-28 14:50:20 +01:00
{% endfor %}
</ul>
{% endif %}
{% endwith %}
2012-02-27 11:34:32 +01:00
{% endblock %}