{% extends "base.html" %}
{% load i18n %}
{% load static %}
{% 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 %} - {% if recipe %}{{ recipe.name }}{% else %}{{ recipesymbol.pn }}{% endif %}{% 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 %}
Title |
Version |
Milestone |
Date |
Committer |
Commit |
{% for rud in recipe_upgrade_details %}
{% if multigroup %}
{% ifchanged rud.group %}
{{ rud.group.title }} |
{% endifchanged %}
{% endif %}
{{ rud.title }} |
{% if rud.upgrade_type != 'R' %}{{ rud.version }}{% if rud.upgrade_type == 'D' %} downgrade{% endif %}{% endif %} |
{% if rud.milestone_name %}
{{ rud.release_name }}
{% if rud.milestone_name != "All" %}
{{ rud.milestone_name }}
{% endif %}
|
{% else %}
{{ rud.release_name }}
{% if rud.milestone_name != "All" %}
{{ rud.milestone_name }}
{% endif %}
|
{% endif %}
{{ rud.date }} |
{% if rud.is_recipe_maintainer %}
{{ rud.maintainer_name }} |
{% else %}
{{ rud.maintainer_name }} |
{% endif %}
{{ rud.commit }} |
{% endfor %}
{% endif %}
{% if recipe %}
Patches
{% if recipe.patch_set.exists %}
Patch |
Status |
{% for patch in recipe.patch_set.all %}
{{ patch.src_path }} |
{{ patch.get_status_display }} {{ patch.status_extra | urlize }} |
{% endfor %}
{% else %}
None
{% endif %}
{% endif %}
{% if otherbranch_recipes %}
Other branches
This recipe in other branches of {{ recipe.layerbranch.layer.name }}:
Branch |
Recipe |
{% for other in otherbranch_recipes %}
{{ other.layerbranch.branch }}
|
{% if other == recipe %}
{{ other.pn }} {{ other.pv }} (this recipe)
{% else %}
{{ other.pn }} {{ other.pv }}
{% endif %}
|
{% endfor %}
{% endif %}
About {{ recipe.pn }}
- Summary
- {% if recipe %}{{ recipe.summary }}{% else %}{{ recipesymbol.summary }}{% endif %}
- Section
- {{ recipe.section }}
- License
- {{ recipe.license }}
- Recipe file
-
{% if recipe %}
{% if recipe.vcs_web_url %}
{{ recipe.full_path }}
{% else %}
{{ recipe.full_path }}
{% endif %}
{% else %}
{{ last_filepath }}
{% endif %}
- Layer
- {{ recipesymbol.layerbranch.layer.name }} ({{ recipesymbol.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 or recipe.comparison_recipes.exists %}
- Distributions
-
{% endif %}
{% endautoescape %}
{% endblock %}