xmpp.chapril.org-conversejs/html/project.html
Michal Čihař 8a72dd6098 Project page
2012-02-27 12:03:57 +01:00

21 lines
604 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h2>{% trans "Project Information" %}</h2>
<p>{% trans "Project website:" %} <a href="{{ object.web }}">{{ object.web }}</a></p>
<p>{% trans "Mailing list for translators:" %} <a href="mailto:{{ object.mail }}">{{ object.mail }}</a></p>
<p>{% trans "Instructions for translators:" %} <a href="{{ object.instructions }}">{{ object.instructions }}</a></p>
<h2>{% trans "Subprojects" %}</h2>
<ul>
{% for prj in object.subproject_set.all %}
<li><a href="{{ prj.get_absolute_url }}">{{ prj.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}