{% extends "projects/project_menu.html" %} {% load i18n %} {% load markup %} {% load addons %} {% load txcommontags %} {% load watches_tags %} {% load permissions %} {% load upload_manager_tags %} {% load avatars %} {% 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 %} {% endif %} {% if project.bug_tracker %} {% endif %} {% if project.tags %} {% endif %} {% with project.maintainers.all as maintainers %} {% if maintainers %} {% endif %} {% endwith %} {% with project.trans_instructions as instructions_url %} {% if instructions_url %} {% endif %} {% endwith %} {% hook "additional_project_details.html" %} {% comment %} {% endcomment %}
{% trans "Watch:" %} {% watch_toggle project %}
{% trans "Homepage:" %} {{ project.homepage }}
{% trans "Bug tracker:" %} {{ project.bug_tracker }}
{% trans "Tags:" %} {% for tag in project.tagsobj.all|slice:"0:6" %}{{ tag }} {% endfor %}
{% blocktrans count maintainers|length as counter %}Maintainer:{% plural %}Maintainers:{% endblocktrans %} {% for m in maintainers|slice:"0:6" %} {% if m.first_name and m.last_name %} {{ m.first_name }} {{ m.last_name }} ({{m.username}}) {% else %} {{m.username}} {% endif %} {% if not forloop.last %},{% endif %} {% endfor %}
{% trans "Documentation:" %} {% trans "Translation help pages" %}
{% trans "External links:" %}
  • {% trans "Screenshots" %}
{% 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 %}