mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-30 18:10:51 +08:00
11 lines
446 B
HTML
11 lines
446 B
HTML
{% load i18n %}
|
|
<h2>{% trans "Project Information" %}</h2>
|
|
|
|
<p>{% trans "Project website:" %} <a href="{{ object.web }}">{{ object.web }}</a></p>
|
|
{% if object.mail %}
|
|
<p>{% trans "Mailing list for translators:" %} <a href="mailto:{{ object.mail }}">{{ object.mail }}</a></p>
|
|
{% endif %}
|
|
{% if object.instructions %}
|
|
<p>{% trans "Instructions for translators:" %} <a href="{{ object.instructions }}">{{ object.instructions }}</a></p>
|
|
{% endif %}
|
|
|