summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/base.html
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-06-30 18:33:04 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-23 20:06:58 +0100
commit6e71c276b582135228419d95174b7e7784d496b2 (patch)
treeb9facea21ed3a3af49c80c01275ee1d0b64f8075 /bitbake/lib/toaster/toastergui/templates/base.html
parent8a3789a7b11565aa2ceae0b79f93edb0d353173b (diff)
downloadpoky-6e71c276b582135228419d95174b7e7784d496b2.tar.gz
bitbake: toaster: add project main edit page
This is the first commit on the project main edit page. At this point we have: * the default settings for a newly created project * the ability to add targets * the ability to trigger a build command, and have the build executed Project layers now have an optional field, allowing for removal. Default meta, meta-yocto and meta-yocto-bsp layers cannot be optional. We add XHR calls for interactivity in the main page. (Bitbake rev: 4e438854120cbd10319df1b571ec93e334002325) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/base.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/base.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/base.html b/bitbake/lib/toaster/toastergui/templates/base.html
index 1407d641d5..9ef249aab3 100644
--- a/bitbake/lib/toaster/toastergui/templates/base.html
+++ b/bitbake/lib/toaster/toastergui/templates/base.html
@@ -65,6 +65,10 @@ function reload_params(params) {
65 <i class="icon-caret-down"></i> 65 <i class="icon-caret-down"></i>
66 </button> 66 </button>
67 <ul class="dropdown-menu"> 67 <ul class="dropdown-menu">
68{% for prj in projects %}
69 <li><a href="{% url 'project' prj.id %}">{{prj.name}}</a></li>
70{% endfor %}
71 <li><hr/></li>
68 <li><a href="#">Clone project</a></li> 72 <li><a href="#">Clone project</a></li>
69 <li><a href="#">Export project</a></li> 73 <li><a href="#">Export project</a></li>
70 <li><a href="#">Import project</a></li> 74 <li><a href="#">Import project</a></li>