summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/simple_layer.html
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2015-05-12 15:29:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-14 18:04:09 +0100
commitec8bd70b27efe7875f0c536c4eaf185eae9f7670 (patch)
tree5c1be53dab9e1e8daa0f49f184d0ff7e8423fbbf /bitbake/lib/toaster/bldviewer/templates/simple_layer.html
parentc5a16235b8b56102703bc264768ba386ebe90611 (diff)
downloadpoky-ec8bd70b27efe7875f0c536c4eaf185eae9f7670.tar.gz
bitbake: toaster: Remove old bldviewer application
The SimpleUI is obsolete and not maintained. It should be deleted as there is no use to it. [YOCTO #7709] (Bitbake rev: 10b7c359613629bf6e3465234512990ba4742c48) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/simple_layer.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/simple_layer.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/simple_layer.html b/bitbake/lib/toaster/bldviewer/templates/simple_layer.html
deleted file mode 100644
index 25e7bf818e..0000000000
--- a/bitbake/lib/toaster/bldviewer/templates/simple_layer.html
+++ /dev/null
@@ -1,34 +0,0 @@
1{% extends "simple_basetable.html" %}
2
3{% block pagename %}
4 <h1>Toaster - Layers</h1>
5{% endblock %}
6
7{% block pagetable %}
8 {% load simple_projecttags %}
9
10 <tr>
11 <th>Name</th>
12 <th>Local Path</th>
13 <th>Layer Index URL</th>
14 <th>Known Versions</th>
15 </tr>
16
17 {% for layer in objects %}
18
19 <tr class="data">
20 <td>{{layer.name}}</td>
21 <td>{{layer.local_path}}</td>
22 <td><a href='{{layer.layer_index_url}}'>{{layer.layer_index_url}}</a></td>
23 <td><table>
24 {% for lv in layer.versions %}
25 <tr><td>
26 <a href="{% url "simple-layer_versions_recipes" lv.id %}">({{lv.priority}}){{lv.branch}}:{{lv.commit}} ({{lv.count}} recipes)</a>
27 </td></tr>
28 {% endfor %}
29 </table></td>
30 </tr>
31
32 {% endfor %}
33
34{% endblock %}