{% load i18n %} {% load permissions %} {% load translations %} {% load urlformat %} {% trans "Project website" %} {{ object.web | urlformat }} {% if object.mail %} {% trans "Mailing list for translators" %} {{ object.mail }} {% endif %} {% if object.instructions %} {% trans "Instructions for translators" %} {{ object.instructions|markdown }} {% endif %} {% perm 'billing.view' object as user_can_view_billing %} {% if user_can_view_billing %} {% if object.billings %} {% trans "Billing" %} {% for billing in object.billings %} {% include "billing/state-snippet.html" with object=billing %} {% endfor %} {% endif %} {% endif %} {% if object.all_admins %} {% trans "Project maintainers" %} {% for admin in object.all_admins %} {{ admin.profile.get_user_display_link }} {% endfor %} {% endif %}