summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/recipe.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/recipe.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/recipe.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/recipe.html b/bitbake/lib/toaster/bldviewer/templates/recipe.html
deleted file mode 100644
index d7f57eb9ea..0000000000
--- a/bitbake/lib/toaster/bldviewer/templates/recipe.html
+++ /dev/null
@@ -1,52 +0,0 @@
1{% extends "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>License file</th>
22 <th>Homepage</th>
23 <th>Bugtracker</th>
24 <th>File_path</th>
25 <th style="width: 30em">Recipe Dependency</th>
26
27
28 {% for recipe in objects %}
29
30 <tr class="data">
31 <td><a name="{{recipe.name}}">{{recipe.name}}</a></td>
32 <td>{{recipe.version}}</td>
33 <td>{{recipe.summary}}</td>
34 <td>{{recipe.description}}</td>
35 <td>{{recipe.section}}</td>
36 <td>{{recipe.license}}</td>
37 <td>{{recipe.licensing_info}}</td>
38 <td>{{recipe.homepage}}</td>
39 <td>{{recipe.bugtracker}}</td>
40 <td>{{recipe.file_path}}</td>
41 <td>
42 <div style="height: 5em; overflow:auto">
43 {% for rr in recipe.r_dependencies_recipe.all %}
44 <a href="#{{rr.depends_on.name}}">{{rr.depends_on.name}}</a><br/>
45 {% endfor %}
46 </div>
47 </td>
48 </tr>
49
50 {% endfor %}
51
52{% endblock %}