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

21 lines
604 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-27 12:03:57 +01:00
<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>
2012-02-27 11:34:32 +01:00
<ul>
2012-02-27 12:03:57 +01:00
{% for prj in object.subproject_set.all %}
2012-02-27 11:34:32 +01:00
<li><a href="{{ prj.get_absolute_url }}">{{ prj.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}