2012-02-28 13:17:56 +01:00
|
|
|
{% load i18n %}
|
|
|
|
<h2>{% trans "Project Information" %}</h2>
|
|
|
|
|
|
|
|
<p>{% trans "Project website:" %} <a href="{{ object.web }}">{{ object.web }}</a></p>
|
2012-03-01 14:34:26 +01:00
|
|
|
{% if object.mail %}
|
2012-02-28 13:17:56 +01:00
|
|
|
<p>{% trans "Mailing list for translators:" %} <a href="mailto:{{ object.mail }}">{{ object.mail }}</a></p>
|
2012-03-01 14:34:26 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if object.instructions %}
|
2012-02-28 13:17:56 +01:00
|
|
|
<p>{% trans "Instructions for translators:" %} <a href="{{ object.instructions }}">{{ object.instructions }}</a></p>
|
2012-03-01 14:34:26 +01:00
|
|
|
{% endif %}
|
2012-02-28 13:17:56 +01:00
|
|
|
|