{% extends "projects/base.html" %} {% load i18n %} {% load markup %} {% load txcommontags %} {% load statistics %} {% block body_class %}{{ block.super }} project_detail{% endblock %} {% block title %}{{ block.super }} | {{ project.name }}{% endblock %} {% block extra_head %} {% endblock %} {% block breadcrumb %}{{ block.super }} » {{ project.name }}{% endblock %} {% block body_main %}

{{ project.name }}

{% if request.user.is_authenticated and perms.projects.change_project %} {% endif %}

{% firstof project.description project.name %}

{% with project.long_description_html as long_desc %} {% if long_desc %}
{{ long_desc|truncatewords_html:"100"|safe }}
{% endif %} {% endwith %}
{% if project.homepage or project.tags or project.collections.all %}

{% blocktrans %}Details{% endblocktrans %}

{% endif %} {% if project.homepage %} {% endif %} {% if project.tags %} {% endif %} {% with project.collections.all as colls %} {% if colls %} {% endif %} {% endwith %} {% with project.maintainers.all as maintainers %} {% if maintainers %} {% endif %} {% endwith %} {% comment %} {% endcomment %}
{% trans "Homepage:" %} {{ project.homepage }}
{% trans "Tags:" %} {% for tag in project.tagsobj.all|slice:"0:6" %}{{ tag }} {% endfor %}
{% blocktrans count colls|length as counter %}Collection:{% plural %}Collections:{% endblocktrans %} {% for coll in colls|slice:"0:6" %}{{ coll }} {% 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.email|mungify:m.username}}) {% else %} {{m.email|mungify:m.username}}{% endif %}{% if not forloop.last %},{% endif %} {% endfor %}
{% trans "External links:" %}
  • {% trans "Screenshots" %}
{% include "projects/component_list.html" %}

{% trans 'History' %}

{% load tx_action_log %} {% get_log 5 as action_log for_object project %} {% if not action_log %}

{% trans 'None available' %}

{% else %} {% endif %} {% endblock %} {% block content_footer %} {% endblock %}