mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-07 23:56:23 +01:00
Temporarily use latest snapshot for esi for dj20
Correct admin urls include
Manually correct old ts3 table migration
Remove obsolete services migrations
Remove bootstrap pagination package
Fix url namespacing
19 lines
516 B
Python
19 lines
516 B
Python
from django.conf.urls import include, url
|
|
from allianceauth.hooks import get_hooks
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
# Services
|
|
url(r'^services/', include(([
|
|
url(r'^$', views.services_view, name='services'),
|
|
# Tools
|
|
url(r'^tool/fleet_formatter_tool/$', views.fleet_formatter_view, name='fleet_format_tool'),
|
|
], 'services'), namespace='services')),
|
|
]
|
|
|
|
# Append hooked service urls
|
|
services = get_hooks('services_hook')
|
|
for svc in services:
|
|
urlpatterns += svc().urlpatterns
|