gitlab-org--gitlab-foss/app/views/profiles/_event_table.html.haml

18 lines
369 B
Text
Raw Normal View History

2015-10-19 05:19:45 -04:00
.table-holder
%table.table#audits
%thead
2015-07-03 07:54:50 -04:00
%tr
2015-10-19 05:19:45 -04:00
%th Action
%th When
%tbody
- events.each do |event|
%tr
%td
%span
Signed in with
%b= event.details[:with]
authentication
%td #{time_ago_in_words event.created_at} ago
2015-07-03 07:54:50 -04:00
= paginate events, theme: "gitlab"