blob: 5abe241305790f8875a29b768639655e3b30961b [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001{% extends "baseprojectpage.html" %}
2
3{% load projecttags %}
4{% load humanize %}
5{% load static %}
6
Patrick Williamsf1e5d692016-03-30 15:21:19 -05007{% block title %} Configuration - {{project.name}} - Toaster {% endblock %}
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008{% block projectinfomain %}
9
10<script src="{% static 'js/layerDepsModal.js' %}"></script>
11<script src="{% static 'js/projectpage.js' %}"></script>
12<script>
13 $(document).ready(function (){
14 var ctx = {
15 testReleaseChangeUrl: "{% url 'xhr_testreleasechange' project.id %}",
16 };
17
18 try {
19 projectPageInit(ctx);
20 } catch (e) {
21 document.write("Sorry, An error has occurred loading this page");
22 console.warn(e);
23 }
24 });
25</script>
26
Patrick Williamsc0f7c042017-02-23 20:41:17 -060027<div id="delete-project-modal" class="modal fade" tabindex="-1" role="dialog" data-backdrop="static" data-keyboard="false">
28 <div class="modal-dialog">
29 <div class="modal-content">
30 <div class="modal-header">
31 <h4>Are you sure you want to delete this project?</h4>
32 </div>
33 <div class="modal-body">
34 <p>Deleting the <strong class="project-name"></strong> project
35 will:</p>
36 <ul>
37 <li>Cancel its builds currently in progress</li>
38 <li>Remove its configuration information</li>
39 <li>Remove its imported layers</li>
40 <li>Remove its custom images</li>
41 <li>Remove all its build information</li>
42 </ul>
43 </div>
44 <div class="modal-footer">
45 <button type="button" class="btn btn-primary" id="delete-project-confirmed">
46 <span data-role="submit-state">Delete project</span>
47 <span data-role="loading-state" style="display:none">
48 <span class="fa-pulse">
49 <i class="fa-pulse icon-spinner"></i>
50 </span>
51 &nbsp;Deleting project...
52 </span>
53 </button>
54 <button type="button" class="btn btn-link" data-dismiss="modal">Cancel</button>
55 </div>
56 </div><!-- /.modal-content -->
57 </div><!-- /.modal-dialog -->
58</div>
Patrick Williamsc124f4f2015-09-15 14:41:29 -050059
60
Patrick Williamsc0f7c042017-02-23 20:41:17 -060061<div class="row" id="project-page" style="display:none">
62 <div class="col-md-6">
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063 <div class="well well-transparent" id="machine-section">
64 <h3>Machine</h3>
65
Patrick Williamsc0f7c042017-02-23 20:41:17 -060066 <p class="lead"><span id="project-machine-name"></span> <span class="glyphicon glyphicon-edit" id="change-machine-toggle"></span></p>
Patrick Williamsc124f4f2015-09-15 14:41:29 -050067
Patrick Williamsc0f7c042017-02-23 20:41:17 -060068 <form id="select-machine-form" style="display:none;" class="form-inline">
69 <span class="help-block">Machine suggestions come from the list of layers added to your project. If you don't see the machine you are looking for, <a href="{% url 'projectmachines' project.id %}">check the full list of machines</a></span>
70 <div class="form-group">
71 <input class="form-control" id="machine-change-input" autocomplete="off" value="" data-provide="typeahead" data-minlength="1" data-autocomplete="off" type="text">
Patrick Williamsc124f4f2015-09-15 14:41:29 -050072 </div>
Patrick Williamsc0f7c042017-02-23 20:41:17 -060073 <button id="machine-change-btn" class="btn btn-default" type="button">Save</button>
74 <a href="#" id="cancel-machine-change" class="btn btn-link">Cancel</a>
75 <p class="form-link"><a href="{% url 'projectmachines' project.id %}">View compatible machines</a></p>
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076 </form>
77 </div>
78
79 <div class="well well-transparent">
80 <h3>Most built recipes</h3>
81
82 <div class="alert alert-info" style="display:none" id="no-most-built">
Patrick Williamsc0f7c042017-02-23 20:41:17 -060083 <h4>You haven't built any recipes yet</h4>
84 <p class="form-link"><a href="{% url 'projectimagerecipes' project.id %}">Choose a recipe to build</a></p>
Patrick Williamsc124f4f2015-09-15 14:41:29 -050085 </div>
86
Patrick Williamsc0f7c042017-02-23 20:41:17 -060087 <ul class="list-unstyled lead" id="freq-build-list">
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088 </ul>
89 <button class="btn btn-primary" id="freq-build-btn" disabled="disabled">Build selected recipes</button>
90 </div>
91
92 <div class="well well-transparent">
93 <h3>Project release</h3>
94
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050095 <p class="lead"><span id="project-release-title"></span>
Patrick Williamsc124f4f2015-09-15 14:41:29 -050096
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050097 <!-- Comment out the ability to change the project release, until we decide what to do with this functionality -->
98
99 <!--i title="" data-original-title="" id="release-change-toggle" class="icon-pencil"></i-->
100 </p>
101
102 <!-- Comment out the ability to change the project release, until we decide what to do with this functionality -->
103
104 <!--form class="form-inline" id="change-release-form" style="display:none;">
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500105 <select></select>
106 <button class="btn" style="margin-left:5px;" id="change-release-btn">Change</button> <a href="#" id="cancel-release-change" class="btn btn-link">Cancel</a>
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500107 </form-->
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500108 </div>
109 </div>
110
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600111 <div class="col-md-6">
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500112 <div class="well well-transparent" id="layer-container">
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600113 <h3>Layers <span class="counter">(<span id="project-layers-count"></span>)</span>
114 <span title="OpenEmbedded organises recipes and machines into thematic groups called <strong>layers</strong>. Click on a layer name to see the recipes and machines it includes." class="glyphicon glyphicon-question-sign get-help"></span>
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500115 </h3>
116
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600117 <div class="alert alert-warning" id="no-layers-in-project" style="display:none">
118 <h4>This project has no layers</h4>
119 In order to build this project you need to add some layers first. For that you can:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500120 <ul>
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600121 <li><a href="{% url 'projectlayers' project.id %}">Choose from the layers compatible with this project</a></li>
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500122 <li><a href="{% url 'importlayer' project.id %}">Import a layer</a></li>
123 <li><a href="http://www.yoctoproject.org/docs/current/dev-manual/dev-manual.html#understanding-and-creating-layers" target="_blank">Read about layers in the documentation</a></li>
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600124 <li>Or type a layer name below</li>
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500125 </ul>
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500126 </div>
127
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600128 <form class="form-inline">
129 <div class="form-group">
130 <input id="layer-add-input" class="form-control" autocomplete="off" placeholder="Type a layer name" data-minlength="1" data-autocomplete="off" data-provide="typeahead" data-source="" type="text">
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500131 </div>
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600132 <button id="add-layer-btn" class="btn btn-default" disabled>Add layer</button>
133 <p class="form-link">
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500134 <a href="{% url 'projectlayers' project.id %}" id="view-compatible-layers">View compatible layers</a>
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600135 <span class="text-muted">|</span>
136 <a href="{% url 'importlayer' project.id %}">Import layer</a>
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500137 </p>
138 </form>
139
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600140 <ul class="list-unstyled lead" id="layers-in-project-list">
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500141 </ul>
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500142 </div>
143</div>
144{% endblock %}