{% extends "base.html" %} {% load i18n %} {% load static %} {% comment %} layerindex-web - layer review list page template Copyright (C) 2013 Intel Corporation Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block content %} {% autoescape on %} {% if layerbranch_list %}
{% for layerbranch in layerbranch_list %} {% endfor %}
Layer name Description Type Repository
{{ layerbranch.layer.name }} {% if layerbranch.yp_compatible_version %} {{layerbranch.yp_compatible_version.description}} {% endif %} {{ layerbranch.layer.summary }} {{ layerbranch.layer.get_layer_type_display }} {{ layerbranch.layer.vcs_url }} {% if layerbranch.layer.vcs_web_url %} web repo {% endif %} {% if layerbranch.tree_url %} tree {% endif %}
{% if is_paginated %} {% load pagination %} {% pagination page_obj %} {% endif %} {% else %}

No unpublished layers to review.

{% endif %} {% endautoescape %} {% endblock %}