mirror of
https://git.yoctoproject.org/poky
synced 2026-06-17 06:19:56 +00:00
ae329b7633
Mainly in the top of the page, by adjusting some classes and the headings. Also, it removes the commented out tab for the 'My image recipes' section, since the final designs for image customisation do not need it. (Bitbake rev: 945746f21916eb64a0b4344bcf7e7e0dd75b9547) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
2.3 KiB
HTML
48 lines
2.3 KiB
HTML
<div class="alert alert-success lead" id="project-created-notification" style="margin-top:15px; display:none">
|
||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||
Your project <strong>{{project.name}}</strong> has been created. You can now <a href="{% url 'projectmachines' project.id %}">select your target machine</a> and <a href="{% url 'projecttargets' project.id %}">choose image recipes</a> to build.
|
||
</div>
|
||
|
||
<!-- project name -->
|
||
<div class="page-header">
|
||
<h1><span id="project-name">{{project.name}}</span>
|
||
<i class="icon-pencil" data-original-title="" id="project-change-form-toggle" title=""></i>
|
||
</h1>
|
||
<form id="project-name-change-form" style="margin-bottom: 0px; display: none;">
|
||
<div class="input-append">
|
||
<input class="huge input-xxlarge" type="text" id="project-name-change-input" autocomplete="off" value="{{project.name}}">
|
||
<button id="project-name-change-btn" class="btn btn-large" type="button">Save</button>
|
||
<a href="#" id="project-name-change-cancel" class="btn btn-large btn-link">Cancel</a>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
<div id="project-topbar">
|
||
<ul class="nav nav-pills">
|
||
<li>
|
||
<a href="{% url 'projectbuilds' project.id %}">
|
||
Builds (<span class="total-builds">0</span>)
|
||
</a>
|
||
</li>
|
||
<li id="topbar-configuration-tab">
|
||
<a href="{% url 'project' project.id %}">
|
||
Configuration
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="{% url 'importlayer' project.id %}">
|
||
Import layer
|
||
</a>
|
||
</li>
|
||
<li class="pull-right">
|
||
<form class="form-inline" style="margin-bottom:0px;">
|
||
<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>"></i>
|
||
<div class="input-append">
|
||
<input id="build-input" type="text" class="input-xlarge input-lg build-target-input" placeholder="Type the recipe you want to build" autocomplete="off" disabled>
|
||
<button id="build-button" class="btn btn-primary btn-large build-button" data-project-id="{{project.id}}" disabled>Build</button>
|
||
</div>
|
||
</form>
|
||
</li>
|
||
</ul>
|
||
</div>
|