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