mirror of
git://git.yoctoproject.org/poky
synced 2026-08-15 01:10:53 +00:00
Add the Image customisation front end feature to Toaster. Caveat - This feature is currently in development and should not be enabled by default. (Bitbake rev: 543586462b66434741f47f2884b4ccdeda5397b5) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
730 B
HTML
17 lines
730 B
HTML
<button class="btn btn-block btn-danger add-rm-package-btn" id="package-rm-btn-{{data.pk}}" data-directive="remove" data-package="{{data.pk}}" data-package-url="{% url 'xhr_customrecipe_packages' extra.recipe_id data.pk %}" style="
|
|
{% if data.pk not in extra.current_packages %}
|
|
display:none
|
|
{% endif %}
|
|
">
|
|
<i class="icon-trash no-tooltip"></i>
|
|
Remove package
|
|
</a>
|
|
<button class="btn btn-block add-rm-package-btn" data-directive="add" id="package-add-btn-{{data.pk}}" data-package="{{data.pk}}" data-package-url="{% url 'xhr_customrecipe_packages' extra.recipe_id data.pk %}" style="
|
|
{% if data.pk in extra.current_packages %}
|
|
display:none
|
|
{% endif %}
|
|
">
|
|
<i class="icon-plus"></i>
|
|
Add package
|
|
</button>
|