summaryrefslogtreecommitdiffstats
path: root/poky/bitbake/lib/toaster/toastergui/templates/basetable_bottom.html
blob: a2011fa902d7caae5448ab552aaf413e146f5957 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
    </tbody>
    </table>

<!-- Show pagination controls -->
<div id="pagination-basetable_bottom">
   <!--span class="help-inline">Showing {{objects.start_index}} to {{objects.end_index}} out of {{objects.paginator.count}} entries.</span-->

   <ul class="pagination">
{%if objects.has_previous %}
  <li><a href="javascript:reload_params({'page':{{objects.previous_page_number}}})">&laquo;</a></li>
{%else%}
  <li class="disabled"><a href="#">&laquo;</a></li>
{%endif%}
{% for i in objects.page_range %}
  <li{%if i == objects.number %} class="active" {%endif%}><a href="javascript:reload_params({'page':{{i}}})">{{i}}</a></li>
{% endfor %}
{%if objects.has_next%}
  <li><a href="javascript:reload_params({'page':{{objects.next_page_number}}})">&raquo;</a></li>
{%else%}
  <li class="disabled"><a href="#">&raquo;</a></li>
{%endif%}
  </ul>
  <form class="navbar-form navbar-right">
    <div class="form-group">
      <label>Show rows:</label>
      <select class="form-control pagesize">
        {% with "10 25 50 100 150" as list%}
        {% for i in list.split %}
        <option value="{{i}}">{{i}}</option>
        {% endfor %}
        {% endwith %}
      </select>
    </div>
  </form>
</div>

<!-- Update page display settings -->

<script>
 $(document).ready(function() {

    // we load cookies for the column display
    save = $.cookie('_displaycols_{{objectname}}');
    if (save != undefined) {
        setting = save.split(';');
        for ( i = 0; i < setting.length; i++) {
            if (setting[i].length > 0) {
                splitlist = setting[i].split(':');
                id = splitlist[0], v = splitlist[1];
                if (v == 'true') {
                    $('.chbxtoggle#'+id).prop('checked', true);
                }
                else {
                    $('.chbxtoggle#'+id).prop('checked', false);
                }
            }
        }
    }

    // load data for number of entries to be displayed on page
    if ({{request.GET.count}} != "") {
      pagesize = {{request.GET.count}};
    }

    $('.pagesize option').prop('selected', false)
                         .filter('[value="' + pagesize + '"]')
                         .attr('selected', true);

    $('.chbxtoggle').each(function () {
        showhideTableColumn($(this).attr('id'), $(this).is(':checked'))
    });

    //turn edit columns dropdown into a multi-select menu
     $('.dropdown-menu input, .dropdown-menu label').click(function(e) {
        e.stopPropagation();
    });

    //show tooltip with applied filter
    $('#filtered').tooltip({container:'table', placement:'bottom', delay:{hide:1500}, html:true});

    //progress bar tooltip
    $('.progress, .lead span').tooltip({container:'table', placement:'top'});

    $(".pagesize").change(function () {
        reload_params({"count":$(this).val()});
    });
});
</script>

<!-- modal filter boxes -->
   {% for tc in tablecols %}{% if tc.filter %}{% with objectname=objectname f=tc.filter %}
        {% include "filtersnippet.html" %}
   {% endwith %}{% endif %} {% endfor %}
<!-- end modals -->
OpenPOWER on IntegriCloud