{% load i18n %}
{% trans "Project Name" %}
{{ project.name }}
{% trans "Project ID" %}
{{ project.id }}
{% trans "Enabled" %}
{{ project.enabled|yesno|capfirst }}
{% trans "Description" %}
{{ project.description|default:_("None") }}
{% if extras %} {% for key, value in extras.items %}
{{ key }}
{{ value }}
{% endfor %} {% endif %}