{% 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" %}
{% if project.private %} {% trans "Private Project"%} {% endif %}

{{ project.name }}

{% firstof project.description|escape project.name|escape %}

{% with project.long_description_html as long_desc %} {% if long_desc %}
{{ long_desc|truncatewords_html:"100"|safe }}
{% endif %} {% endwith %} {% if perms.projects.change_project or is_maintainer %} {% endif %}
{% if project.homepage or project.tags %}

{% blocktrans %}Details{% endblocktrans %}

{% endif %} {% 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 %} {% 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 "External links:" %}
  • {% trans "Screenshots" %}
{% include "projects/resource_list.html" %} {% hook "project.html" overview_top %} {% include "projects/release_list.html" %}

{% trans 'History' %}

{% get_log 5 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 %} {% get_permission "project_perm.maintain" for request.user and project as "is_maintainer" %} {% endblock %}