summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/configuration.html
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-10-11 13:46:23 +0100
committerAlexandru DAMIAN <alexandru.damian@intel.com>2013-10-16 15:26:37 +0100
commitcb1338dedc3873ac81488df9dd3aa6f048e6b02f (patch)
treec94cfe05a88b87bcd8cda1ae5b825ac475601b80 /bitbake/lib/toaster/bldviewer/templates/configuration.html
parentfaf8f8660fae26a14578738b642fdeb08bcb9d54 (diff)
downloadpoky-cb1338dedc3873ac81488df9dd3aa6f048e6b02f.tar.gz
bitbake: add toaster code to bitbake
This patch adds the Toaster component to Bitbake. Toaster is a module designed to record the progress of a Bitbake build, and data about the resultant artifacts. It contains a web-based interface and a REST API allowing post-facto inspection of the build process and artifacts. Features present in this build: * toaster start script * relational data model * Django boilerplate code * the REST API * the Simple UI web interface This patch has all the development history squashed together. Code portions contributed by Calin Dragomir <calindragomir@gmail.com>. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Diffstat (limited to 'bitbake/lib/toaster/bldviewer/templates/configuration.html')
-rw-r--r--bitbake/lib/toaster/bldviewer/templates/configuration.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldviewer/templates/configuration.html b/bitbake/lib/toaster/bldviewer/templates/configuration.html
new file mode 100644
index 0000000000..052c37c4e8
--- /dev/null
+++ b/bitbake/lib/toaster/bldviewer/templates/configuration.html
@@ -0,0 +1,20 @@
1{% extends "basebuildpage.html" %}
2
3{% block pagetitle %}Configuration{% endblock %}
4{% block pagetable %}
5
6 <tr>
7 <th>Name</th>
8 <th>Value</th>
9 <th>Description</th>
10 </tr>
11
12 {% for variable in configuration %}
13
14 <tr class="data">
15 <td>{{variable.variable_name}}</td>
16 <td>{{variable.variable_value}}</td>
17 <td>{% if variable.description %}{{variable.description}}{% endif %}</td>
18 {% endfor %}
19
20{% endblock %}