You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
%h3= t 'sessions.title' |
|
%p.muted-hint |
|
= t 'sessions.explanation' |
|
= link_to t('sessions.view_authentication_history'), settings_login_activities_path |
|
|
|
%hr.spacer/ |
|
|
|
.table-wrapper |
|
%table.table.inline-table |
|
%thead |
|
%tr |
|
%th= t 'sessions.browser' |
|
%th= t 'sessions.ip' |
|
%th= t 'sessions.activity' |
|
%th |
|
%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}", default: "#{session.browser}"), platform: t("sessions.platforms.#{session.platform}", default: "#{session.platform}") |
|
%td |
|
%samp= session.ip |
|
%td |
|
- if current_session.session_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) |
|
%td |
|
- if current_session.session_id != session.session_id && !current_account.suspended? |
|
= table_link_to 'times', t('sessions.revoke'), settings_session_path(session), method: :delete |
|
|
|
|