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

22 lines
902 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 10:09:16 +01:00
<h2>{% trans "Project Information" %}</h2>
<p>{% trans "Project website:" %} <a href="{{ object.project.web }}">{{ object.project.web }}</a></p>
<p>{% trans "Mailing list for translators:" %} <a href="mailto:{{ object.project.mail }}">{{ object.project.mail }}</a></p>
<p>{% trans "Instructions for translators:" %} <a href="{{ object.project.instructions }}">{{ object.project.instructions }}</a></p>
<p>{% trans "Git repository:" %} <code>{{ object.repo }}</code> ({% blocktrans with object.branch as branch %}{{ branch }} brach{% endblocktrans %})</p>
2012-02-27 11:34:32 +01:00
<h2>Translations</h2>
<ul>
2012-02-28 10:09:16 +01:00
{% for trans in object.translation_set.all %}
2012-02-28 10:29:20 +01:00
<li><a href="{{ trans.get_absolute_url }}">{{ trans.language.name }} ({{ trans.translated }}% translated{% if trans.fuzzy %}, {{ trans.fuzzy }}% fuzzy{% endif %})</a></li>
2012-02-27 11:34:32 +01:00
{% endfor %}
</ul>
{% endblock %}