diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
| commit | 8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch) | |
| tree | efdc32587159d0050a69009bdf2330a531727d95 /bitbake/lib/toaster/toastergui/templates/builds-toastertable.html | |
| parent | d412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff) | |
| download | poky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz | |
The poky repository master branch is no longer being updated.
You can either:
a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs
b) use the new bitbake-setup
You can find information about either approach in our documentation:
https://docs.yoctoproject.org/
Note that "poky" the distro setting is still available in meta-yocto as
before and we continue to use and maintain that.
Long live Poky!
Some further information on the background of this change can be found
in: https://lists.openembedded.org/g/openembedded-architecture/message/2179
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/builds-toastertable.html')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/templates/builds-toastertable.html | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/builds-toastertable.html b/bitbake/lib/toaster/toastergui/templates/builds-toastertable.html deleted file mode 100644 index 0afe0a3115..0000000000 --- a/bitbake/lib/toaster/toastergui/templates/builds-toastertable.html +++ /dev/null | |||
| @@ -1,52 +0,0 @@ | |||
| 1 | {% extends 'base.html' %} | ||
| 2 | {% load static %} | ||
| 3 | |||
| 4 | {% block extraheadcontent %} | ||
| 5 | <link rel="stylesheet" href="{% static 'css/jquery-ui.min.css' %}" type='text/css'> | ||
| 6 | <link rel="stylesheet" href="{% static 'css/jquery-ui.structure.min.css' %}" type='text/css'> | ||
| 7 | <link rel="stylesheet" href="{% static 'css/jquery-ui.theme.min.css' %}" type='text/css'> | ||
| 8 | <script src="{% static 'js/jquery-ui.min.js' %}"> | ||
| 9 | </script> | ||
| 10 | {% endblock %} | ||
| 11 | |||
| 12 | {% block title %} All builds - Toaster {% endblock %} | ||
| 13 | |||
| 14 | {% block pagecontent %} | ||
| 15 | |||
| 16 | <div class="row"> | ||
| 17 | <div class="col-md-12"> | ||
| 18 | {% with mru=mru mrb_type=mrb_type %} | ||
| 19 | {% include 'mrb_section.html' %} | ||
| 20 | {% endwith %} | ||
| 21 | |||
| 22 | <div class="page-header"> | ||
| 23 | <h1 class="top-air" data-role="page-title"></h1> | ||
| 24 | </div> | ||
| 25 | |||
| 26 | {% url 'builds' as xhr_table_url %} | ||
| 27 | {% include 'toastertable.html' %} | ||
| 28 | </div> | ||
| 29 | </div> | ||
| 30 | |||
| 31 | <script> | ||
| 32 | $(document).ready(function () { | ||
| 33 | var tableElt = $("#{{table_name}}"); | ||
| 34 | var titleElt = $("[data-role='page-title']"); | ||
| 35 | |||
| 36 | tableElt.on("table-done", function (e, total, tableParams) { | ||
| 37 | var title = "All builds"; | ||
| 38 | |||
| 39 | if (tableParams.search || tableParams.filter) { | ||
| 40 | if (total === 0) { | ||
| 41 | title = "No builds found"; | ||
| 42 | } | ||
| 43 | else if (total > 0) { | ||
| 44 | title = total + " build" + (total > 1 ? 's' : '') + " found"; | ||
| 45 | } | ||
| 46 | } | ||
| 47 | |||
| 48 | titleElt.text(title); | ||
| 49 | }); | ||
| 50 | }); | ||
| 51 | </script> | ||
| 52 | {% endblock %} | ||
