debian-mirror-gitlab/app/views/profiles/_event_table.html.haml

13 lines
405 B
Text
Raw Normal View History

2016-06-02 11:05:42 +05:30
%h5.prepend-top-0
2019-09-04 21:01:54 +05:30
= _('History of authentications')
2016-06-02 11:05:42 +05:30
2018-11-08 19:23:39 +05:30
%ul.content-list
2016-06-02 11:05:42 +05:30
- events.each do |event|
%li
%span.description
= audit_icon(event.details[:with], class: "append-right-5")
2019-09-04 21:01:54 +05:30
= _('Signed in with %{authentication} authentication') % { authentication: event.details[:with]}
2018-11-08 19:23:39 +05:30
%span.float-right= time_ago_with_tooltip(event.created_at)
2015-11-26 14:37:03 +05:30
2015-09-11 14:41:01 +05:30
= paginate events, theme: "gitlab"