summaryrefslogtreecommitdiff
path: root/app/views/system_messages/_index_core.html.haml
blob: 157d9640529e96ea9974eef0694f4b202c7e7609 (plain)
1
2
3
4
5
6
7
8
9
10
11
%table
  %tr
    %th= t('system_messages.index.created_at')
    %th= t('system_messages.index.content')

  - reset_cycle
  - for system_message in system_messages
    %tr{:class => cycle('odd', 'even')}
      %td= system_message.created_at
      %td= system_message.content
      =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => system_message}