22 lines
520 B
Python
22 lines
520 B
Python
"""
|
|
This reroutes from an URL to a python view-function/class.
|
|
|
|
The main web/urls.py includes these routes for all urls starting with `admin/`
|
|
(the `admin/` part should not be included again here).
|
|
|
|
"""
|
|
|
|
|
|
from django.urls import path
|
|
|
|
from evennia.web.admin.urls import urlpatterns as evennia_admin_urlpatterns
|
|
|
|
# add patterns here
|
|
urlpatterns = [
|
|
# path("url-pattern", imported_python_view),
|
|
# path("url-pattern", imported_python_view),
|
|
]
|
|
|
|
# read by Django
|
|
urlpatterns = urlpatterns + evennia_admin_urlpatterns
|