{% extends "base.html" %} {% load projecttags %} {% load humanize %} {% load static %} {% block pagecontent %}
{% if recipe.get_all_packages.count == 0 and last_build == None %}

Add | Remove packages

Toaster has no package information for {{recipe.name}}. To generate package information, build {{recipe.name}}

{% else %} {# ToasterTable for Adding remove packages #} {% url 'recipeselectpackages' project.id recipe.id as xhr_table_url %}

{{title}} (0)

{% include "toastertable.html" %} {% endif %}

About {{recipe.name}}

Approx. packages included
{{recipe.get_all_packages.count}}
Approx. package size
{{approx_pkg_size.size__sum|filtered_filesizeformat}}
{% if last_build %}
Last build
{{last_build.completed_on|date:"d/m/y H:i"}}
{% endif %}
Layer
{{recipe.layer_version.layer.name}}
Based on
{{recipe.base_recipe.name}}
{% if recipe.get_last_successful_built_target %} {% with recipe.get_last_successful_built_target as last_build_target %}
Last build
{{last_build_target.build.completed_on|date:"d/m/y H:i"}}
{% endwith %} {% endif %}
Recipe file
{{recipe.name}}_{{recipe.version}}.bb
Layer
{{recipe.layer_version.layer.name}}
{% if recipe.summary %}
Summary
{{recipe.summary}}
{% endif %} {% if recipe.description %}
Description
{{recipe.description}}
{% endif %}
Version
{{recipe.version}}
{% if recipe.section %}
Section
{{recipe.section}}
{% endif %}
License
{{recipe.license}}
{% endblock %}