diff --git a/ipynbsrv/settings.py b/ipynbsrv/settings.py
index 7fa6c35..7b144e8 100644
--- a/ipynbsrv/settings.py
+++ b/ipynbsrv/settings.py
@@ -122,6 +122,7 @@
LOGIN_URL = '/accounts/login'
LOGIN_REDIRECT_URL = '/accounts/flag'
PUBLIC_URL = '/public/'
+USER_GUIDE_URL = '/docs/user-guide/'
VARS_MODULE_PATH = 'ipynbsrv.core.conf'
diff --git a/ipynbsrv/web/templates/web/collaborationgroups/index.html b/ipynbsrv/web/templates/web/collaborationgroups/index.html
index 3c70f73..77dd0cc 100644
--- a/ipynbsrv/web/templates/web/collaborationgroups/index.html
+++ b/ipynbsrv/web/templates/web/collaborationgroups/index.html
@@ -13,12 +13,12 @@
{% include 'web/snippets/messages.html' with messages=messages only %}
-
My Groups
+
Groups
- {% if groups %}
+ {% if groups and not groups|length_is:"1" %}
@@ -29,6 +29,7 @@ My Groups
+
{% for group in groups %}
{% if not group.is_single_user_group %}
@@ -59,24 +60,23 @@ My Groups
{% endif %}
{% endif %}
- {% if request.user.backend_user.id == group.creator.id or request.user.id in group.admins %}
-
- {% endif %}
-
-
- {% endif %}
- {% endfor %}
-
+ {% if request.user.backend_user.id == group.creator.id or request.user.id in group.admins %}
+
+ {% endif %}
+
+
+ {% endif %}
+ {% endfor %}
+
-
{% else %}
-
You have no groups yet.
+
You have no groups.
{% endif %}
{% include 'web/collaborationgroups/modal_addusers.html' with csrf_token=csrf_token only %}
@@ -109,7 +109,7 @@
My Groups
table.find('.label').click(function (e) {
var label = $(e.target);
search_input.val(label.text());
- search_input.submit();
+ search_input.submit();
});
$('[data-toggle="modal"]').click(function (e) {
diff --git a/ipynbsrv/web/templates/web/collaborationgroups/manage.html b/ipynbsrv/web/templates/web/collaborationgroups/manage.html
index b15e05f..207d20b 100644
--- a/ipynbsrv/web/templates/web/collaborationgroups/manage.html
+++ b/ipynbsrv/web/templates/web/collaborationgroups/manage.html
@@ -40,6 +40,12 @@
Group
{% endif %}
+
+
+ Property |
+ Value |
+
+
Name: | {{ group.name }} |
@@ -52,13 +58,13 @@ Group
Members
-
- {% endif %}
-
+
+ {% if request.user.backend_user.id in group.admins or request.user.backend_user.id == group.creator.id %}
+
+ {% endif %}
+
@@ -85,7 +91,7 @@ Members
{% endif %}
{% if request.user.backend_user.id in group.admins or request.user.backend_user.id == group.creator.id %}
- {% if member.id != group.creator.id %}
+ {% if member.id != group.creator.id %}
- {% for n in notifications %}
+ {% for n in notifications %}
{{ n.date | date:"d.m.Y, H:i" }} |
{{ n.notification.sender.username }} |
@@ -48,11 +48,11 @@ Notifications
- {% endfor %}
+ {% endfor %}
{% else %}
-
You have no notifications yet.
+
You have no notifications.
{% endif %}
{% include 'web/notifications/modal_create.html' with groups=groups notification_types=notification_types containers=containers container_images=container_images shares=shares csrf_token=csrf_token only %}
diff --git a/ipynbsrv/web/templates/web/notifications/modal_create.html b/ipynbsrv/web/templates/web/notifications/modal_create.html
index 9d353bb..fe8c67d 100644
--- a/ipynbsrv/web/templates/web/notifications/modal_create.html
+++ b/ipynbsrv/web/templates/web/notifications/modal_create.html
@@ -11,18 +11,18 @@
New notification
{% csrf_token %}
-
+