summaryrefslogtreecommitdiff
path: root/app/views/gs_cluster_sync_log_entries/_index_core.html.haml
blob: c9a3e500f99891b02432851cf5d7ccf8a674184c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%table{:class => 'table table-striped'}
  %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')

  
  - for gs_cluster_sync_log_entry in gs_cluster_sync_log_entries
    %tr
      %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}