gitlab-org--gitlab-foss/app/views/admin/spam_logs/index.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
555 B
Plaintext
Raw Normal View History

- 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= _('Primary Action')
%th
= render @spam_logs
2018-08-10 20:57:42 +00:00
= paginate @spam_logs, theme: 'gitlab'
- else
%h4= _('There are no Spam Logs')