{% extends "base.html" %} {% block title %}{{ _('Edit Project') }} - {{ app_name }}{% endblock %} {% block content %}

{{ _('Edit Project') }}

{{ project.name }}

{{ _('Back to Project') }}

{{ _('Create new client') }}

{{ _('Supports Markdown') }}

{{ _('Leave empty for non-billable projects') }}

{% if custom_field_definitions %}

{{ _('Custom Fields') }}

{{ _('These custom fields are defined globally and available for all projects.') }}

{% for definition in custom_field_definitions %}
{% if definition.description %}

{{ definition.description }}

{% endif %}
{% endfor %}
{% endif %}
{{ _('Cancel') }}
{% block extra_css %} {% endblock %} {% endblock %}