{% extends "base_toplevel.html" %} {% load i18n %} {% comment %} layerindex-web - distro index page template Copyright (C) 2013 Intel Corporation Copyright (C) 2016 Wind River Systems Licensed under the MIT license, see COPYING.MIT for details {% endcomment %} {% block navs %} {% autoescape on %}
  • Layers
  • Recipes
  • Machines
  • Classes
  • Distros
  • {% endautoescape %} {% endblock %} {% block content_inner %} {% autoescape on %}
    {% if distro_list %} {% for distro in distro_list %} {% endfor %}
    Distro name Description Layer
    {{ distro.name }} {{ distro.description }} {{ distro.layerbranch.layer.name }}
    {% if is_paginated %} {% load pagination %} {% pagination page_obj %} {% endif %} {% else %} {% if search_keyword %}

    No matching distros in database.

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