{% extends "base.html" %} {% load i18n %} {% load static %} {% comment %} layerindex-web - layer detail page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %}
{% if not layerbranch %}
This layer does not exist for branch {{ url_branch }}.
{% endif %}
{% for note in layeritem.layernote_set.all %}
{{ note.text }} {% if perms.layerindex.publish_layer or useredit %}

Edit note Delete note

{% endif %}
{% endfor %}

{{ layeritem.description }}

{% if layeritem.usage_url %} Setup information {% endif %} {% if layeritem.mailing_list_url %} Mailing list {% endif %}

Git repository

{{ layeritem.vcs_url }} {% if layeritem.vcs_web_url %} web repo {% endif %}

{% if layerbranch.vcs_subdir %}

Subdirectory

{{ layerbranch.vcs_subdir }} {% if layerbranch.tree_url %} web subdirectory {% endif %}

{% endif %} {% if layerbranch.vcs_last_commit %}

Last commit: {{ layerbranch.vcs_last_commit|timesince }} ago ({{ layerbranch.branch.name }} branch)

{% endif %} {% if layerbranch.active_maintainers.count > 0 %}

{% if layerbranch.active_maintainers|length = 1 %}Maintainer{% else %}Maintainers{% endif %}

    {% for maintainer in layerbranch.active_maintainers %}
  • {{ maintainer.name }} {% if maintainer.responsibility %} ({{ maintainer.responsibility }}) {% endif %} email
  • {% endfor %}
{% endif %}
{% if layerbranch.dependencies_set.count > 0 %}

Dependencies

The {{ layeritem.name }} layer depends upon:

{% endif %}
{% if layerbranch.recipe_set.count > 0 %}
{% for recipe in layerbranch.sorted_recipes %} {% endfor %}
Recipe name Version Description
{{ recipe.name }}{% if 'image' in recipe.inherits.split %}{% endif %} {{ recipe.pv }} {{ recipe.short_desc }}
{% endif %} {% if machines.count > 0 %}
{% for machine in machines %} {% endfor %}
{{ machine.name }} {{ machine.description }}
{% endif %} {% if appends.count > 0 %}
{% for append in appends %} {% endfor %}
{{ append.filename }}
{% endif %} {% if classes.count > 0 %}
{% for class in classes %} {% endfor %}
{{ class.name }}
{% endif %}
{% endautoescape %} {% endblock %} {% block scripts %} {% endblock %}