Add link to search for users connected from the same IP address (#12157)
* Add link to search for users connected from the same IP address Fixes #11949 * Fix missing cell in admin account view table
This commit is contained in:
parent
bcf694dce7
commit
15c192ce40
|
@ -143,12 +143,15 @@
|
|||
%th= t('admin.accounts.most_recent_ip')
|
||||
%td= @account.user_current_sign_in_ip
|
||||
%td
|
||||
- if @account.user_current_sign_in_ip
|
||||
= table_link_to 'search', t('admin.accounts.search_same_ip'), admin_accounts_path(ip: @account.user_current_sign_in_ip)
|
||||
|
||||
%tr
|
||||
%th= t('admin.accounts.most_recent_activity')
|
||||
%td
|
||||
- if @account.user_current_sign_in_at
|
||||
%time.formatted{ datetime: @account.user_current_sign_in_at.iso8601, title: l(@account.user_current_sign_in_at) }= l @account.user_current_sign_in_at
|
||||
%td
|
||||
|
||||
- if @account.user&.invited?
|
||||
%tr
|
||||
|
|
|
@ -175,6 +175,7 @@ en:
|
|||
user: User
|
||||
salmon_url: Salmon URL
|
||||
search: Search
|
||||
search_same_ip: Other users with the same IP
|
||||
shared_inbox_url: Shared inbox URL
|
||||
show:
|
||||
created_reports: Made reports
|
||||
|
|
Loading…
Reference in New Issue