diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/projecttopbar.html')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/templates/projecttopbar.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/projecttopbar.html b/bitbake/lib/toaster/toastergui/templates/projecttopbar.html new file mode 100644 index 0000000000..46473cb76b --- /dev/null +++ b/bitbake/lib/toaster/toastergui/templates/projecttopbar.html | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | <!-- project name --> | ||
| 2 | <div class="row-fluid page-header"> | ||
| 3 | <h1>{{project.name}}</h1> | ||
| 4 | </div> | ||
| 5 | |||
| 6 | <div class="row-fluid" id="project-topbar"> | ||
| 7 | <ul class="nav nav-pills"> | ||
| 8 | <li> | ||
| 9 | <a href="{% url 'projectbuilds' project.id %}"> | ||
| 10 | Builds (<span class="total-builds"></span>) | ||
| 11 | </a> | ||
| 12 | </li> | ||
| 13 | <li id="topbar-configuration-tab"> | ||
| 14 | <a href="{% url 'project' project.id %}"> | ||
| 15 | Configuration | ||
| 16 | </a> | ||
| 17 | </li> | ||
| 18 | <!-- Coming soon | ||
| 19 | <li> | ||
| 20 | <a href="my-image-recipes.html"> | ||
| 21 | My image recipes | ||
| 22 | </a> | ||
| 23 | </li> | ||
| 24 | --> | ||
| 25 | <li class="pull-right"> | ||
| 26 | <form class="form-inline" style="margin-bottom: 0"> | ||
| 27 | |||
| 28 | <i class="icon-question-sign get-help heading-help" data-placement="left" title="" data-original-title="Type the name of one or more recipes you want to build, separated by a space. You can also specify a task by appending a semicolon and a task name to the recipe name, like so: <code>busybox:clean</code>"> | ||
| 29 | </i> | ||
| 30 | <div class="input-append"> | ||
| 31 | <input type="text" class="input-xlarge build-target-input" placeholder="Type the recipe you want to build" autocomplete="off"> | ||
| 32 | <button class="btn btn-primary build-button" data-project-id="{{project.id}}" disabled>Build | ||
| 33 | </button> | ||
| 34 | </div> | ||
| 35 | </form> | ||
| 36 | </li> | ||
| 37 | </ul> | ||
| 38 | </div> | ||
