summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2016-04-12 15:56:43 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 08:35:03 +0100
commit443f7b39158c891015a791814b9b1fe2324edc41 (patch)
tree3f570a138594273bc7498225e066b7f9a99bf0c5 /bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html
parent79e0eb9e52e9b954aa3b6bc6dee15a75b5eb990c (diff)
downloadpoky-443f7b39158c891015a791814b9b1fe2324edc41.tar.gz
bitbake: toaster: Migrate project configuration from bootstrap 2 to bootstrap 3
Convert all the HTML templates, JS and CSS in the project parts of toaster to use bootstrap 3. (Bitbake rev: 69527a731eada699d3f604ff8f3ae9410981ba9b) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html b/bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html
index 0aefc56259..303faecbd4 100644
--- a/bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html
+++ b/bitbake/lib/toaster/toastergui/templates/pkg_add_rm_btn.html
@@ -1,12 +1,12 @@
1{# TODO move to snippets dir #} 1{# TODO move to snippets dir #}
2{% if data.is_locale_package %} 2{% if data.is_locale_package %}
3<p class="text-center"> 3<p class="text-center">
4 <span class="muted">Locale package</span> 4 <span class="text-muted">Locale package</span>
5 <i class="icon-question-sign get-help hover-help" title="" 5 <span class="glyphicon glyphicon-question-sign get-help hover-help"
6 data-original-title="This package is included in your image 6 title="This package is included in your image
7 based on the locale specified in the IMAGE_LINGUAS variable" 7 based on the locale specified in the IMAGE_LINGUAS variable"
8 style="visibility: hidden;"> 8 style="visibility: hidden;">
9 </i> 9 </span>
10</p> 10</p>
11 11
12{% else %} 12{% else %}
@@ -21,12 +21,12 @@
21 <i class="icon-trash no-tooltip"></i> 21 <i class="icon-trash no-tooltip"></i>
22 Remove package 22 Remove package
23 </button> 23 </button>
24 <button class="btn btn-block add-rm-package-btn" data-directive="add" data-id="{{data.pk}}" data-package-url="{% url 'xhr_customrecipe_packages' extra.recipe_id data.pk %}" data-name="{{data.name}}" style=" 24 <button class="btn btn-default btn-block add-rm-package-btn" data-directive="add" data-id="{{data.pk}}" data-package-url="{% url 'xhr_customrecipe_packages' extra.recipe_id data.pk %}" data-name="{{data.name}}" style="
25 {% if data.pk in extra.current_packages %} 25 {% if data.pk in extra.current_packages %}
26 display:none 26 display:none
27 {% endif %} 27 {% endif %}
28 "> 28 ">
29 <i class="icon-plus"></i> 29 <i class="glyphicon glyphicon-plus"></i>
30 Add package 30 Add package
31 </button> 31 </button>
32</div> 32</div>