Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame^] | 1 | <div class="alert alert-success lead" id="project-created-notification" style="margin-top:15px; display:none"> |
| 2 | <button type="button" class="close" data-dismiss="alert">×</button> |
| 3 | 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. |
| 4 | </div> |
| 5 | |
| 6 | <!-- project name --> |
| 7 | <div class="page-header"> |
| 8 | <h1><span id="project-name">{{project.name}}</span> |
| 9 | <i class="icon-pencil" data-original-title="" id="project-change-form-toggle" title=""></i> |
| 10 | </h1> |
| 11 | <form id="project-name-change-form" style="margin-bottom: 0px; display: none;"> |
| 12 | <div class="input-append"> |
| 13 | <input class="huge input-xxlarge" type="text" id="project-name-change-input" autocomplete="off" value="{{project.name}}"> |
| 14 | <button id="project-name-change-btn" class="btn btn-large" type="button">Save</button> |
| 15 | <a href="#" id="project-name-change-cancel" class="btn btn-large btn-link">Cancel</a> |
| 16 | </div> |
| 17 | </form> |
| 18 | </div> |
| 19 | |
| 20 | <div id="project-topbar"> |
| 21 | <ul class="nav nav-pills"> |
| 22 | <li> |
| 23 | <a href="{% url 'projectbuilds' project.id %}"> |
| 24 | Builds (<span class="total-builds">0</span>) |
| 25 | </a> |
| 26 | </li> |
| 27 | <li id="topbar-configuration-tab"> |
| 28 | <a href="{% url 'project' project.id %}"> |
| 29 | Configuration |
| 30 | </a> |
| 31 | </li> |
| 32 | <li> |
| 33 | <a href="{% url 'importlayer' project.id %}"> |
| 34 | Import layer |
| 35 | </a> |
| 36 | </li> |
| 37 | <li class="pull-right"> |
| 38 | <form class="form-inline" style="margin-bottom:0px;"> |
| 39 | <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> |
| 40 | <div class="input-append"> |
| 41 | <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> |
| 42 | <button id="build-button" class="btn btn-primary btn-large build-button" data-project-id="{{project.id}}" disabled>Build</button> |
| 43 | </div> |
| 44 | </form> |
| 45 | </li> |
| 46 | </ul> |
| 47 | </div> |