{% extends "projects/project_menu.html" %} {% load i18n %} {% load markup %} {% load addons %} {% load txcommontags %} {% load watches_tags %} {% load permissions %} {% load upload_manager_tags %} {% load tx_action_log %} {% block body_class %}{{ block.super }} project_detail{% endblock %} {% block title %}{{ block.super }} | {{ project.name }}{% endblock %} {% block breadcrumb %}{{ block.super }} » {{ project.name }}{% endblock %} {% block content_main %} {% get_permission "project_perm.maintain" for request.user and project as "is_maintainer" %}

{% blocktrans %}Details{% endblocktrans %}

{% if request.user.is_authenticated %} {% url notification.views.notices as notices_url %} {% if notices_url %} {% endif %} {% endif %}
{% if project.homepage %}
{% trans "Homepage:" %}
{{ project.homepage }}
{% endif %} {% if project.bug_tracker %}
{% trans "Bug tracker:" %}
{{ project.bug_tracker }}
{% endif %} {% if project.tags %}
{% trans "Tags:" %}
{% for tag in project.tagsobj.all|slice:"0:6" %}{{ tag }} {% endfor %}
{% endif %} {% with project.trans_instructions as instructions_url %} {% if instructions_url %}
{% trans "Documentation:" %}
{% trans "Translation help pages" %}
{% endif %} {% endwith %} {% hook "additional_project_details.html" %} {% with project.maintainers.all as maintainers %} {% if maintainers %}
{% blocktrans count maintainers|length as counter %}Maintainer:{% plural %}Maintainers:{% endblocktrans %}
{% for m in maintainers|slice:"0:6" %} {% endfor %}
{% endif %} {% endwith %}
{% with project.long_description_html as long_desc %} {% if long_desc %}
{{ long_desc|truncatewords_html:"100"|safe }}
{% endif %} {% endwith %}
{% if project.resources.count or not project.releases.count %} {% include "projects/resource_list.html" %} {% hook "project.html" overview_top %} {% include "projects/release_list.html" %} {% else %} {% include "projects/release_list.html" %} {% include "projects/resource_list.html" %} {% hook "project.html" overview_top %} {% endif %}

{% trans 'History' %}

{% get_log 10 as action_log for_object project %} {% if not action_log %}

{% trans 'No history recorded yet.' %}

{% else %} {% hook "project.html" overview %} {% endif %}
{% endblock %} {% block content_footer %} {% endblock %}