summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/simple_recipe.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/simple_recipe.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/simple_recipe.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/simple_recipe.html b/bitbake/lib/toaster/bldviewer/templates/simple_recipe.html
new file mode 100644
index 0000000000..77b9de2525
--- /dev/null
+++ b/bitbake/lib/toaster/bldviewer/templates/simple_recipe.html
@@ -0,0 +1,50 @@
1{% extends "simple_basetable.html" %}
2
3{% block pagename %}
4<ul class="nav nav-tabs" style="display: inline-block">
5 <li><a>Layer {{layer_version.layer.name}}&nbsp;:&nbsp;{{layer_version.branch}}&nbsp;:&nbsp;{{layer_version.commit}}&nbsp;:&nbsp;{{layer_version.priority}}</a></li>
6</ul>
7 <h1>Toaster - Recipes for a Layer</h1>
8{% endblock %}
9
10{% block pagetable %}
11 {% load projecttags %}
12
13 <tr>
14 </tr>
15 <th>Name</th>
16 <th>Version</th>
17 <th>Summary</th>
18 <th>Description</th>
19 <th>Section</th>
20 <th>License</th>
21 <th>Homepage</th>
22 <th>Bugtracker</th>
23 <th>File_path</th>
24 <th style="width: 30em">Recipe Dependency</th>
25
26
27 {% for recipe in objects %}
28
29 <tr class="data">
30 <td><a name="{{recipe.name}}">{{recipe.name}}</a></td>
31 <td>{{recipe.version}}</td>
32 <td>{{recipe.summary}}</td>
33 <td>{{recipe.description}}</td>
34 <td>{{recipe.section}}</td>
35 <td>{{recipe.license}}</td>
36 <td>{{recipe.homepage}}</td>
37 <td>{{recipe.bugtracker}}</td>
38 <td>{{recipe.file_path}}</td>
39 <td>
40 <div style="height: 5em; overflow:auto">
41 {% for rr in recipe.r_dependencies_recipe.all %}
42 <a href="#{{rr.depends_on.name}}">{{rr.depends_on.name}}</a><br/>
43 {% endfor %}
44 </div>
45 </td>
46 </tr>
47
48 {% endfor %}
49
50{% endblock %}