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

  %tbody
    - 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}