mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-09 08:36:23 +01: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'),
|
|
]
|