{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% comment %} rrs-web - recipe detail page template Copyright (C) 2015 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% autoescape on %} {% block title_append %} - {{ recipe.pn }}{% endblock %} {% endautoescape %} {% block topfunctions %} {% endblock %} {% block contenttag %}
{% endblock %} {% block content %} {% autoescape on %}
{% if upstream_no_update_reason %}

Reason why this recipe can't be updated

{{ upstream_no_update_reason }}

{% endif %}

Updates

{% if recipe_upgrade_detail_count == 0 %}
There are no updates prior to {{ milestone_name }}
{% else %} {% for rud in recipe_upgrade_details %} {% if rud.milestone_name %} {% else %} {% endif %} {% if rud.is_recipe_maintainer %} {% else %} {% endif %} {% endfor %}
Title Version Milestone Date Committer Commit
{{ rud.title }} {{ rud.version }} {{ rud.release_name }} {% if rud.milestone_name != "All" %} {{ rud.milestone_name }} {% endif %} {{ rud.release_name }} {% if rud.milestone_name != "All" %} {{ rud.milestone_name }} {% endif %} {{ rud.date }}{{ rud.maintainer_name }}{{ rud.maintainer_name }}{{ rud.commit }}
{% endif %}

About {{ recipe.pn }}

Summary
{{ recipe.summary }}
Section
{{ recipe.section }}
License
{{ recipe.license }}
Recipe file
{% if recipe.vcs_web_url %} {{ recipe.full_path }} {% else %} {{ recipe.full_path }} {% endif %}
Layer
{{ recipe.layerbranch.layer.name }} ({{ recipe.layerbranch.branch.name}} branch)
{% if recipe.homepage %}
Homepage
{% if recipe.homepage %}{{ recipe.homepage }}{% endif %}
{% endif %} {% if recipe.bugtracker %}
Bug tracker
{{ recipe.bugtracker }}
{% endif %} {% if recipe.source_set.exists %}
Sources
{% endif %} {% if recipe_provides %}
Provides
    {% for p in recipe_provides %}
  • {{ p }}
  • {% endfor %}
{% endif %} {% if recipe_depends or recipe.packageconfig_set %}
Depends
    {% for d in recipe_depends %}
  • {{ d }}
  • {% endfor %} {% for pkc in recipe.packageconfig_set.all %} {% for dep in pkc.get_deps_list %}
  • {{ dep }} (optional)
  • {% endfor %} {% endfor %}
{% endif %} {% if recipe_distros %}
Distributions
    {% for d in recipe_distros %}
  • {{ d }}
  • {% endfor %}
{% endif %}
{% endautoescape %} {% endblock %}