summaryrefslogtreecommitdiff
path: root/app/views/admin/spam_logs/index.html.haml
blob: 9a0756510ec194428b91df3e58ced215cdd82562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- page_title _("Spam Logs")
%h1.page-title.gl-font-size-h-display= _('Spam Logs')
%hr
- if @spam_logs.present?
  .table-holder
    %table.table
      %thead
        %tr
          %th= _('Date')
          %th= _('User')
          %th= _('Source IP')
          %th= _('API?')
          %th= _('Recaptcha verified?')
          %th= _('Type')
          %th= _('Title')
          %th= _('Description')
          %th= _('User Status')
          %th= _('Primary Action')
          %th
      = render @spam_logs
  = paginate_collection @spam_logs
- else
  %h4= _('There are no Spam Logs')