summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/layerdetails.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/layerdetails.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/layerdetails.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/layerdetails.html b/bitbake/lib/toaster/toastergui/templates/layerdetails.html
index 11b1ffc2dc..0d3aa15373 100644
--- a/bitbake/lib/toaster/toastergui/templates/layerdetails.html
+++ b/bitbake/lib/toaster/toastergui/templates/layerdetails.html
@@ -84,7 +84,7 @@
84 <a data-toggle="tab" href="#information" id="details-tab">Layer details</a> 84 <a data-toggle="tab" href="#information" id="details-tab">Layer details</a>
85 </li> 85 </li>
86 <li> 86 <li>
87 <a data-toggle="tab" href="#targets" id="targets-tab">Targets ({{total_targets}})</a> 87 <a data-toggle="tab" href="#targets" id="targets-tab">Recipes ({{total_targets}})</a>
88 </li> 88 </li>
89 <li> 89 <li>
90 <a data-toggle="tab" href="#machines" id="machines-tab">Machines ({{total_machines}})</a> 90 <a data-toggle="tab" href="#machines" id="machines-tab">Machines ({{total_machines}})</a>
@@ -190,8 +190,8 @@
190 <div name="targets" id="targets" class="tab-pane"> 190 <div name="targets" id="targets" class="tab-pane">
191 {% if total_targets == 0 %} 191 {% if total_targets == 0 %}
192 <div class="alert alert-info"> 192 <div class="alert alert-info">
193 <p>Toaster does not have target information for the <strong> {{layerversion.layer.name}} </strong> layer.</p> 193 <p>Toaster does not have recipe information for the <strong> {{layerversion.layer.name}} </strong> layer.</p>
194 <p>Toaster learns about layers when you build them. If this layer provides any targets, they will be listed here after you build the <strong> {{layerversion.layer.name}} </strong> layer.</p> 194 <p>Toaster learns about layers when you build them. If this layer provides any recipes, they will be listed here after you build the <strong> {{layerversion.layer.name}} </strong> layer.</p>
195 </div> 195 </div>
196 {% else %} 196 {% else %}
197 197
@@ -210,7 +210,7 @@
210 <form class="navbar-search input-append pull-left"> 210 <form class="navbar-search input-append pull-left">
211 {% endif %} 211 {% endif %}
212 212
213 <input type="text" id="target-search" name="targets_search" placeholder="Search targets" class="input-xlarge" value="{{request.GET.targets_search}}"> 213 <input type="text" id="target-search" name="targets_search" placeholder="Search recipes" class="input-xlarge" value="{{request.GET.targets_search}}">
214 {% if request.GET.targets_search %} 214 {% if request.GET.targets_search %}
215 <a class="add-on btn target-search-clear"> 215 <a class="add-on btn target-search-clear">
216 <i class="icon-remove"></i> 216 <i class="icon-remove"></i>
@@ -253,17 +253,17 @@
253 <tr> 253 <tr>
254 <th> 254 <th>
255 <i class="icon-question-sign get-help" title="Information about a single piece of software, including where to download the source, configuration options, how to compile the source files and how to package the compiled output"></i> 255 <i class="icon-question-sign get-help" title="Information about a single piece of software, including where to download the source, configuration options, how to compile the source files and how to package the compiled output"></i>
256 Target 256 Recipe
257 {% if request.GET.targets_search %} 257 {% if request.GET.targets_search %}
258 <span class="badge badge-info">{{targets.paginator.count}}</span> 258 <span class="badge badge-info">{{targets.paginator.count}}</span>
259 {% endif %} 259 {% endif %}
260 </th> 260 </th>
261 <th> 261 <th>
262 <i class="icon-question-sign get-help" title="The recipe version and revision"></i> 262 <i class="icon-question-sign get-help" title="The recipe version and revision"></i>
263 Target version 263 Recipe version
264 </th> 264 </th>
265 <th class="span4">Summary</th> 265 <th class="span4">Summary</th>
266 <th class="span2">Build target</th> 266 <th class="span2">Build recipe</th>
267 </tr> 267 </tr>
268 </thead> 268 </thead>
269 <tbody> 269 <tbody>
@@ -277,7 +277,7 @@
277 </td> 277 </td>
278 <td>{{target.version}}</td> 278 <td>{{target.version}}</td>
279 <td>{{target.summary}}</td> 279 <td>{{target.summary}}</td>
280 <td><button class="btn btn-block build-target-btn" data-target-name="{{target.name}}" {% if layer_in_project == 0 %}disabled="disabled"{% endif %} >Build target</button></td> 280 <td><button class="btn btn-block build-target-btn" data-target-name="{{target.name}}" {% if layer_in_project == 0 %}disabled="disabled"{% endif %} >Build recipe</button></td>
281 </tr> 281 </tr>
282 {% endfor %} 282 {% endfor %}
283 </tbody> 283 </tbody>