summaryrefslogtreecommitdiff
path: root/app/views/gs_cluster_sync_log_entries/_index_core.html.haml
blob: 05cbda8493c6f674e66ea304230b106efea4f674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%table
  %tr
    %th= t('gs_cluster_sync_log_entries.index.gs_node_id')
    %th= t('gs_cluster_sync_log_entries.index.class_name')
    %th= t('gs_cluster_sync_log_entries.index.action')
    %th= t('gs_cluster_sync_log_entries.index.content')
    %th= t('gs_cluster_sync_log_entries.index.status')

  - reset_cycle
  - for gs_cluster_sync_log_entry in gs_cluster_sync_log_entries
    %tr{:class => cycle('odd', 'even')}
      %td= gs_cluster_sync_log_entry.gs_node_id
      %td= gs_cluster_sync_log_entry.class_name
      %td= gs_cluster_sync_log_entry.action
      %td= gs_cluster_sync_log_entry.content
      %td= gs_cluster_sync_log_entry.status
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => gs_cluster_sync_log_entry}