Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Video AG Infrastruktur
website
Commits
843f2dcc
Commit
843f2dcc
authored
Oct 12, 2016
by
Andreas Valder
Browse files
made ui for permissions look better
parent
eea3af2c
Changes
4
Hide whitespace changes
Inline
Side-by-side
server.py
View file @
843f2dcc
...
...
@@ -119,7 +119,7 @@ def permdescr(perms):
elif
perm
[
'type'
]
==
'password'
:
password
=
True
elif
perm
[
'type'
]
==
'l2p'
:
l2p_courses
.
append
(
perm
[
'param'
])
l2p_courses
.
append
(
perm
[
'param
1
'
])
elif
perm
[
'type'
]
==
'rwth'
:
rwth_intern
=
True
if
public
or
not
perms
:
...
...
@@ -287,6 +287,7 @@ def course(id=None, handle=None):
lectures
=
query
(
'SELECT * FROM lectures WHERE course_id = ? AND (? OR visible) ORDER BY time, duration DESC'
,
course
[
'id'
],
ismod
())
for
lecture
in
lectures
:
lecture
[
'perm'
]
=
[]
lecture
[
'perm'
]
+=
course
[
'perm'
]
lecture
[
'course'
]
=
course
for
perm
in
perms
:
if
perm
[
'lecture_id'
]
==
lecture
[
'id'
]:
...
...
static/l2p-logo.gif
0 → 100644
View file @
843f2dcc
271 Bytes
static/rwth.png
0 → 100644
View file @
843f2dcc
630 Bytes
templates/macros.html
View file @
843f2dcc
...
...
@@ -186,24 +186,34 @@ $('#embedcodebtn').popover(
{% macro moderator_acleditor(type,id,acl,global_acls) %}
{% set tmp = global_acls.extend(acl) %}
{% if (not acl) %}
{% if ismod() %}
{% set permdescription = acl|permdescr %}
{% set permlogos = '' %}
{% if permdescription[0] == 'public' %}
{% set permlogos = '
<span
class=
"fa fa-globe"
aria-hidden=
"true"
></span>
' %}
{% endif %}
{% if permdescription[0] == 'password' %}
{% set permlogos = '
<span
class=
"fa fa-lock"
aria-hidden=
"true"
></span>
' %}
{% endif %}
{% if permdescription[0] == 'l2p' %}
{% set permlogos %}
<span
class=
"fa"
aria-hidden=
"true"
style=
"width: 12px; height: 14px; background-size: cover; background-image: url('/static/l2p-logo.gif');"
></span>
{% endset %}
{% endif %}
{% if permdescription[0] == 'rwth' %}
{% set permlogos %}
<span
class=
"fa"
aria-hidden=
"true"
style=
"width: 25px; height: 20px; background-size: cover; background-image: url('/static/rwth.png');"
></span>
{% endset %}
{% endif %}
{% if ismod() %}
<button
class=
"btn btn-default modmoderator_acleditor"
data-type=
"{{ type }}"
data-id=
"{{ id }}"
>
<span
class=
"fa fa-unlock"
aria-hidden=
"true"
style=
"color: green;"
></span>
{{ permlogos|safe }}
</button>
{% endif %}
{% else %}
{% if ismod() %}
<button
class=
"btn btn-default modmoderator_acleditor"
data-type=
"{{ type }}"
data-id=
"{{ id }}"
onclick=
""
>
{% else %}
<a>
{% endif %}
<span
class=
"fa fa-lock"
aria-hidden=
"true"
style=
"color: red;"
></span>
{% if ismod() %}
</button>
{% else %}
</a>
{% endif %}
<a>
{{ permlogos|safe }}
</a>
{% endif %}
{% endmacro %}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment