mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-16 16:00:17 +02:00
Move base template Refactor services urls and templates Refactor groupmanagement urls and templates Refactor notifications urls and templates
12 lines
310 B
Python
12 lines
310 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = 'permissions_tool'
|
|
|
|
urlpatterns = [
|
|
url(r'^overview/$', views.permissions_overview, name='overview'),
|
|
url(r'^audit/(?P<app_label>[\w\-_]+)/(?P<model>[\w\-_]+)/(?P<codename>[\w\-_]+)/$', views.permissions_audit,
|
|
name='audit'),
|
|
]
|