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

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