Add a public rights page to view which permissions are granted to which role, update Font Awesome to 5.13
This commit is contained in:
parent
b0f6ec1061
commit
a83ab4bf85
8 changed files with 175 additions and 29 deletions
10
apps/permission/urls.py
Normal file
10
apps/permission/urls.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
from django.urls import path
|
||||
from permission.views import RightsView
|
||||
|
||||
app_name = 'permission'
|
||||
urlpatterns = [
|
||||
path('rights', RightsView.as_view(), name="rights"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue