mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
cb74c0cfe4
* Changes the headings' rank of the security settings section This commit changes the existing headings' rank of the security settings section from level 6 to level 4. * Renames the auth.change_password string into auth.security The "Security" preferences' section used to be called "Change password". When it was renamed, the string name wasn't changed. This commits changes auth.change_password to auth.security. * Adds a heading to the password change form There was previously no heading for the part of the "Security" page that contain the password change form. This commit adds a rank 4 heading to this section and reintroduces an "auth.change_password" string to be used inside it. * Removes useless HR elements The various sections of the "Security" settings page were previously separated by HR elements. Now that there is proper headings, they're not required anymore. * Updates CSS This commit updates CSS in such a way that the same style is applied to all the H4 elements of the settings. * Correct a mistake A character went missing on one of the previous commits, broking the CSS. This new commit fixes it.
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
%h4= t 'sessions.title'
|
|
%p.muted-hint= t 'sessions.explanation'
|
|
|
|
.table-wrapper
|
|
%table.table.inline-table
|
|
%thead
|
|
%tr
|
|
%th= t 'sessions.browser'
|
|
%th= t 'sessions.ip'
|
|
%th= t 'sessions.activity'
|
|
%td
|
|
%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
|
|
= table_link_to 'times', t('sessions.revoke'), settings_session_path(session), method: :delete
|