summaryrefslogtreecommitdiffstats
path: root/import-layers/yocto-poky/bitbake/lib/toaster/toastergui/templates/projectbuilds-toastertable.html
diff options
context:
space:
mode:
Diffstat (limited to 'import-layers/yocto-poky/bitbake/lib/toaster/toastergui/templates/projectbuilds-toastertable.html')
-rw-r--r--import-layers/yocto-poky/bitbake/lib/toaster/toastergui/templates/projectbuilds-toastertable.html65
1 files changed, 0 insertions, 65 deletions
diff --git a/import-layers/yocto-poky/bitbake/lib/toaster/toastergui/templates/projectbuilds-toastertable.html b/import-layers/yocto-poky/bitbake/lib/toaster/toastergui/templates/projectbuilds-toastertable.html
deleted file mode 100644
index a5fed2dd4..000000000
--- a/import-layers/yocto-poky/bitbake/lib/toaster/toastergui/templates/projectbuilds-toastertable.html
+++ /dev/null
@@ -1,65 +0,0 @@
-{% extends 'base.html' %}
-
-{% load static %}
-
-{% block extraheadcontent %}
-<link rel="stylesheet" href="{% static 'css/jquery-ui.min.css' %}" type='text/css'>
-<link rel="stylesheet" href="{% static 'css/jquery-ui.structure.min.css' %}" type='text/css'>
-<link rel="stylesheet" href="{% static 'css/jquery-ui.theme.min.css' %}" type='text/css'>
-<script src="{% static 'js/jquery-ui.min.js' %}">
-</script>
-{% endblock %}
-
-{% block title %} {{title}} - {{project.name}} - Toaster {% endblock %}
-
-{% block pagecontent %}
-<div class="row">
-
- {% include "projecttopbar.html" %}
-
- <div class="col-md-12">
- {% with mru=mru mrb_type=mrb_type %}
- {% include 'mrb_section.html' %}
- {% endwith %}
-
- <h2 class="top-air" data-role="page-title"></h2>
-
- {% if not build_in_progress_none_completed %}
- {% url 'projectbuilds' project.id as xhr_table_url %}
- {% include 'toastertable.html' %}
- {% endif %}
- </div>
-
- <script>
- $(document).ready(function () {
- // title
- var tableElt = $("#{{table_name}}");
- var titleElt = $("[data-role='page-title']");
-
- tableElt.on("table-done", function (e, total, tableParams) {
- var title = "All project builds";
-
- if (tableParams.search || tableParams.filter) {
- if (total === 0) {
- title = "No project builds found";
- }
- else if (total > 0) {
- title = total + " project build" + (total > 1 ? 's' : '') + " found";
- }
- }
-
- if (total === 0) {
- titleElt.hide();
- } else {
- titleElt.show();
- titleElt.text(title);
- }
- });
-
- // highlight builds tab
- $("#topbar-builds-tab").addClass("active")
- });
- </script>
-
-</div>
-{% endblock %}
OpenPOWER on IntegriCloud