summaryrefslogtreecommitdiff
path: root/app/views/system_messages/_index_core.html.haml
blob: 361eb5fb3d7d60cb76115534a5a034ba65d147bd (plain)
1
2
3
4
5
6
7
8
9
10
11
%table{:class => 'table table-striped'}
  %tr
    %th= t('system_messages.index.created_at')
    %th= t('system_messages.index.content')

  
  - for system_message in system_messages
    %tr
      %td= system_message.created_at
      %td= system_message.content
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => system_message}