blob: 79b4ceba88f78cad9f29760f264862ed151b14d7 (
plain)
1
2
3
4
5
6
7
8
9
|
- content_for :title, t("intruders.index.page_title")
- if @intruders && @intruders.count > 0 && @list_types && @list_types.count > 0
- @list_types.each do |list_type|
%h3= list_type
%table.table.table-striped
= render "index_core", :intruders => @intruders.where(:list_type => list_type)
= render :partial => 'shared/create_link', :locals => {:child_class => Intruder}
|