mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Improve sortability in various lists.
This commit is contained in:
@@ -14,16 +14,16 @@
|
||||
<table class="table table-condensed sortable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="hidden-xs" colspan="2"> </th>
|
||||
<th>{{ trans('list.email') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.registered_at') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.registered_from') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.confirmed_from') }}</th>
|
||||
<th data-defaultsign="_19" class="hidden-xs" colspan="2"> </th>
|
||||
<th data-defaultsign="az">{{ trans('list.email') }}</th>
|
||||
<th data-defaultsign="month" class="hidden-xs">{{ trans('list.registered_at') }}</th>
|
||||
<th data-defaultsign="az" class="hidden-xs">{{ trans('list.registered_from') }}</th>
|
||||
<th data-defaultsign="az" class="hidden-xs">{{ trans('list.confirmed_from') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.is_admin') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.has_two_factor') }}</th>
|
||||
<th>{{ trans('list.is_activated') }}</th>
|
||||
<th>{{ trans('list.is_blocked') }}</th>
|
||||
<th class="hidden-xs">{{ trans('list.blocked_code') }}</th>
|
||||
<th data-defaultsign="az" class="hidden-xs">{{ trans('list.blocked_code') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -41,11 +41,17 @@
|
||||
{{ user.created_at.formatLocalized(monthAndDayFormat) }}
|
||||
{{ user.created_at.format('H:i') }}
|
||||
</td>
|
||||
<td class="hidden-xs">
|
||||
{{ Preferences.getForUser(user,"registration_ip_address").data }}
|
||||
<td data-value="{{ user.prefs.registration_ip_address }}" class="hidden-xs">
|
||||
{{ user.prefs.registration_ip_address }}
|
||||
{% if user.prefs.registration_ip_address|length > 0 %}
|
||||
(<a href="http://whois.domaintools.com/{{ user.prefs.registration_ip_address }}">whois</a>)
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="hidden-xs">
|
||||
{{ Preferences.getForUser(user,"confirmation_ip_address").data }}
|
||||
<td data-value="{{ user.prefs.confirmation_ip_address }}" class="hidden-xs">
|
||||
{{ user.prefs.confirmation_ip_address }}
|
||||
{% if user.prefs.confirmation_ip_address|length > 0 %}
|
||||
(<a href="http://whois.domaintools.com/{{ user.prefs.confirmation_ip_address }}">whois</a>)
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="hidden-xs" data-value="{% if user.isAdmin %}1{% else %}0{% endif %}">
|
||||
{% if user.isAdmin %}
|
||||
|
||||
Reference in New Issue
Block a user