summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/projects-toastertable.html
blob: 5814f32d069ba74a189dea5d033ba8d16b9aadfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{% extends 'base.html' %}

{% block title %} All projects - Toaster {% endblock %}

{% block pagecontent %}

  <div class="page-header top-air">
    <h1 data-role="page-title"></h1>
  </div>

  {% url 'projects' as xhr_table_url %}
  {% include 'toastertable.html' %}

  <script>
    $(document).ready(function () {
      var tableElt = $("#{{table_name}}");
      var titleElt = $("[data-role='page-title']");

      tableElt.on("table-done", function (e, total, tableParams) {
        var title = "All projects";

        if (tableParams.search || tableParams.filter) {
          if (total === 0) {
            title = "No projects found";
          }
          else if (total > 0) {
            title = total + " project" + (total > 1 ? 's' : '') + " found";
          }
        }

        titleElt.text(title);
      });
    });
  </script>

{% endblock %}