{% extends "projects/project_detail_childs.html" %}
{% load statistics %}
{% load markup %}
{% load i18n %}
{% load truncate %}
{% load permissions %}
{% load txpermissions %}
{% block extra_head %}
{% include "translations/stats_table_filter_header.html" %}
{% endblock %}
{% block body_class %}{{ block.super }} release_detail{% endblock %}
{% block title %}{{ block.super }} | Release '{{ release.name }}'{% endblock %}
{% block breadcrumb %}{{ block.super }} » Release '{{ release.name }}'{% endblock %}
{% block content_sec %}
{% endblock %}
{% block content_main %}
{{ release.description }}
{% endif %} {% with release.long_description_html as long_desc %} {% if long_desc %}{% trans "Homepage:" %} | {{ release.homepage }} |
---|---|
{% trans "Release date:" %} | {{ release.release_date|date:"D d M Y" }} |
{% trans "String freeze:" %} | {{ release.stringfreeze_date|date:"D d M Y" }} |
{% trans "Devel freeze:" %} | {{ release.develfreeze_date|date:"D d M Y" }} |
{% trans "Components:" %} | {% with release.components.all|dictsort:"full_name" as component_list %} {% with component_list|length as components_number %} {% blocktrans %}This release has {{ components_number }} components.{% endblocktrans %} {% endwith %} {% endwith %} |
{% trans "No translations added for this release. :-(" %}
{% endif %}