mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 10:02:22 +01:00
This patch updates the database schema to resolve a number of issues discovered while implementing the UI interface. We do not expect that all the data will come in valid at this point. [YOCTO #5453] [YOCTO #5833] [YOCTO #5836] [YOCTO #5811] [YOCTO #5812] [YOCTO #5820] (Bitbake rev: f8ad96d10a095e21fd2ce424c45e17f54642fb54) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
{% extends "simple_basetable.html" %}
|
|
|
|
{% block pagename %}
|
|
<ul class="nav nav-tabs" style="display: inline-block">
|
|
<li><a>Layer {{layer_version.layer.name}} : {{layer_version.branch}} : {{layer_version.commit}} : {{layer_version.priority}}</a></li>
|
|
</ul>
|
|
<h1>Toaster - Recipes for a Layer</h1>
|
|
{% endblock %}
|
|
|
|
{% block pagetable %}
|
|
{% load projecttags %}
|
|
|
|
<tr>
|
|
</tr>
|
|
<th>Name</th>
|
|
<th>Version</th>
|
|
<th>Summary</th>
|
|
<th>Description</th>
|
|
<th>Section</th>
|
|
<th>License</th>
|
|
<th>Homepage</th>
|
|
<th>Bugtracker</th>
|
|
<th>File_path</th>
|
|
<th style="width: 30em">Recipe Dependency</th>
|
|
|
|
|
|
{% for recipe in objects %}
|
|
|
|
<tr class="data">
|
|
<td><a name="{{recipe.name}}">{{recipe.name}}</a></td>
|
|
<td>{{recipe.version}}</td>
|
|
<td>{{recipe.summary}}</td>
|
|
<td>{{recipe.description}}</td>
|
|
<td>{{recipe.section}}</td>
|
|
<td>{{recipe.license}}</td>
|
|
<td>{{recipe.homepage}}</td>
|
|
<td>{{recipe.bugtracker}}</td>
|
|
<td>{{recipe.file_path}}</td>
|
|
<td>
|
|
<div style="height: 5em; overflow:auto">
|
|
{% for rr in recipe.r_dependencies_recipe.all %}
|
|
<a href="#{{rr.depends_on.name}}">{{rr.depends_on.name}}</a><br/>
|
|
{% endfor %}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|