mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-20 02:48:51 +00:00
show name/contact-email info at ldap imported page
This commit is contained in:
@@ -32,7 +32,10 @@
|
||||
|
||||
{% for user in users %}
|
||||
<tr data-userid="{{user.email}}">
|
||||
<td><a href="{% url 'user_info' user.email %}">{{ user.email }}</a>
|
||||
<td>
|
||||
<a href="{% url 'user_info' user.email %}">{{ user.email }}</a>
|
||||
{% if user.name %}<br />{{ user.name }}{% endif %}
|
||||
{% if user.contact_email %}<br />{{ user.contact_email }}{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
<div class="user-status">
|
||||
|
@@ -356,6 +356,7 @@ def sys_user_admin_ldap_imported(request):
|
||||
if user.email == request.user.email:
|
||||
user.is_self = True
|
||||
|
||||
populate_user_info(user)
|
||||
_populate_user_quota_usage(user)
|
||||
|
||||
# populate user last login time
|
||||
|
Reference in New Issue
Block a user