{% extends "basebuilddetailpage.html" %} {% load projecttags %} {% load humanize %} {% block localbreadcrumb %}
  • Recipes
  • {{recipe.name}}_{{recipe.version}}
  • {% endblock %} {% block pagedetailinfomain %}
    {#
    #}
    {% if not objects and not request.GET.search %}
    {{recipe.name}}_{{recipe.version}} does not build any packages.
    {% elif not objects %} {# have empty search results, no table nor pagination #} {% with "packages" as search_what %} {% include "detail_search_header.html" %} {% endwith %} {% else %} {% with "packages" as search_what %} {% include "detail_search_header.html" %} {% endwith %} {% include "detail_sorted_header.html" %} {% for package in objects %} {% endfor %} {% endif %} {% if objects %}
    {{package.name}} {{package.version}}_{{package.revision}} {{package.size|filtered_filesizeformat}}
    {% include "detail_pagination_bottom.html" %} {% endif %}
    {# tab-pane #}
    {# tab-content #}
    {# span7 #}

    About {{recipe.name}}

    {% if recipe.summary %}
    Summary
    {{recipe.summary}}
    {% endif %} {% if recipe.description %}
    Description
    {{recipe.description}}
    {% endif %} {% if recipe.homepage %}
    Homepage
    {{recipe.homepage}}
    {% endif %} {% if recipe.bugtracker %}
    Bugtracker
    {{recipe.bugtracker}}
    {% endif %} {% if recipe.section %}
    Section
    {{recipe.section}}
    {% endif %} {% if recipe.license %}
    License
    {{recipe.license}}
    {% endif %}
    {% endblock pagedetailinfomain %}