about summary refs log tree commit diff
path: root/app/views/auth/registrations/_sessions.html.haml
blob: 4521aad0a2bec4fdf119d0022ef6e612843ff0b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%h6= t 'sessions.title'
%p.muted-hint= t 'sessions.explanation'

%table.table.inline-table
  %thead
    %tr
      %th= t 'sessions.browser'
      %th= t 'sessions.ip'
      %th= t 'sessions.activity'
  %tbody
    - @sessions.each do |session|
      %tr
        %td
          %span{ title: session.user_agent }<
            = fa_icon "#{session_device_icon(session)} fw", 'aria-label' => session_device_icon(session)
            = ' '
            = t 'sessions.description', browser: t("sessions.browsers.#{session.browser}"), platform: t("sessions.platforms.#{session.platform}")
        %td
          %samp= session.ip
        %td
          - if request.session['auth_id'] == session.session_id
            = t 'sessions.current_session'
          - else
            %time.time-ago{ datetime: session.updated_at.iso8601, title: l(session.updated_at) }= l(session.updated_at)