summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html b/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html
new file mode 100644
index 0000000000..d7ad2e7eee
--- /dev/null
+++ b/bitbake/lib/toaster/toastergui/templates/generic-toastertable-page.html
@@ -0,0 +1,25 @@
1{% extends "baseprojectpage.html" %}
2{% load projecttags %}
3{% load humanize %}
4{% load static %}
5
6{% block localbreadcrumb %}
7
8
9<li>{{title}}</li>{% endblock %}
10
11{% block projectinfomain %}
12<div class="page-header">
13 <h1>{{title}} (<span class="table-count-{{table_name}}"></span>)
14 <i class="icon-question-sign get-help heading-help" title="This page lists {{title}} compatible with the release selected for this project, which is {{project.release.description}}"></i>
15 </h1>
16</div>
17<div id="zone1alerts" style="display:none">
18 <div class="alert alert-info lead">
19 <button type="button" class="close" id="hide-alert">&times;</button>
20 <span id="alert-msg"></span>
21 </div>
22</div>
23{% url table_name project.id as xhr_table_url %}
24{% include "toastertable.html" %}
25{% endblock %}