diff --git a/media/css/seahub.css b/media/css/seahub.css
index 73bf9c77fd..bb6515b83a 100644
--- a/media/css/seahub.css
+++ b/media/css/seahub.css
@@ -204,6 +204,7 @@ p {
}
.op {
font-size:13px;
+ margin-right:6px;
}
.op-target {
color:#803;
diff --git a/templates/admin_base.html b/templates/admin_base.html
index 3e296eb9a1..6605bb553d 100644
--- a/templates/admin_base.html
+++ b/templates/admin_base.html
@@ -13,11 +13,6 @@
{% trans "Groups" %}
- {% if request.cloud_mode %}
-
- {% trans "Organizations" %}
-
- {% endif %}
{% trans "Notifications" %}
diff --git a/templates/sys_seafadmin.html b/templates/sys_seafadmin.html
index 6ca7f4bd5f..2645aeb32e 100644
--- a/templates/sys_seafadmin.html
+++ b/templates/sys_seafadmin.html
@@ -2,21 +2,21 @@
{% load i18n %}
{% block nav_seafadmin_class %}class="cur"{% endblock %}
-{% block right_panel %}
+{% block main_panel %}
{% trans "All Libraries" %}
{% if repos %}
- |
- {% trans "Name" %} |
- {% trans "Owner" %} |
- {% trans "Description" %} |
- {% trans "Operations" %} |
+ {% trans "Name" %} |
+ ID |
+ {% trans "Owner" %} |
+ {% trans "Description" %} |
+ {% trans "Operations" %} |
{% for repo in repos %}
-  |
- {{ repo.props.name }} |
+ {{ repo.props.name }} |
+ {{ repo.id }} |
{{ repo.owner}} |
{{ repo.props.desc }} |
{% trans "Delete" %} |
diff --git a/templates/sys_useradmin.html b/templates/sys_useradmin.html
index 1e41dc2607..fe7f804522 100644
--- a/templates/sys_useradmin.html
+++ b/templates/sys_useradmin.html
@@ -1,31 +1,31 @@
{% extends "admin_base.html" %}
-{% load i18n %}
+{% load seahub_tags i18n %}
{% load url from future %}
{% block nav_useradmin_class %}class="cur"{% endblock %}
-{% block left_panel %}
-{% trans "Operations" %}
-
-{% endblock %}
-{% block right_panel %}
+{% block main_panel %}
+
{% trans "All Members" %}
+
+>> {% trans "Add new user" %}
+
- {% trans "Email" %} |
- {% trans "Status" %} |
- {% trans "Operations" %} |
+ {% trans "Email" %} |
+ {% trans "Status" %} |
+ {% trans "Create At" %} |
+ {% trans "Operations" %} |
{% for user in users %}
- {{ user.props.email }} |
+ {{ user.email }} |
{% if user.props.is_active %}
{% trans "Activated" %} |
{% else %}
{% trans "Active" %} |
{% endif %}
+ {{ user.ctime|tsstr_sec }} |
{% if not user.is_self %}
{% trans "Delete" %}
|