diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-30 12:40:52 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-11-30 12:40:52 +0000 |
commit | 1b6d738c7d2115e73f8d54431b2f157a9ce03011 (patch) | |
tree | 3137eac2e4df2e2b614f72c665fbc3e0c66a103e /views/_search_table.haml | |
parent | 9c54a386f2b1684b210dacc1d9c2a964362019c4 (diff) |
Added search views.
Diffstat (limited to 'views/_search_table.haml')
-rw-r--r-- | views/_search_table.haml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/views/_search_table.haml b/views/_search_table.haml new file mode 100644 index 0000000..14a9cfa --- /dev/null +++ b/views/_search_table.haml @@ -0,0 +1,21 @@ +%table#search_table + %tr + %th#selector + %input#toggle_all{ :type => "checkbox" } + :javascript + // This just toggles all the checkboxes. + $('#toggle_all').change( function() { + $('input.alert').each( function(index) { + this.checked = !this.checked; + }); + }); + %th#summary Summary + %th#time Last update + - if @alerts.length > 0 + = partial("search_table_row", :collection => @alerts) + - else + %tr{:class => %w(notice)} + %td + %td{:style => "text-align: center;"} + = "No alerts found!" + %td |