mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-13 02:26:24 +01:00
Move templates and fix namespacing
Move base template
Refactor services urls and templates
Refactor groupmanagement urls and templates
Refactor notifications urls and templates
This commit is contained in:
@@ -4,12 +4,12 @@ from . import views
|
||||
|
||||
module_urls = [
|
||||
# Alliance Market Control
|
||||
url(r'^activate/$', views.activate_market, name='auth_activate_market'),
|
||||
url(r'^deactivate/$', views.deactivate_market, name='auth_deactivate_market'),
|
||||
url(r'^reset_password/$', views.reset_market_password, name='auth_reset_market_password'),
|
||||
url(r'^set_password/$', views.set_market_password, name='auth_set_market_password'),
|
||||
url(r'^activate/$', views.activate_market, name='activate'),
|
||||
url(r'^deactivate/$', views.deactivate_market, name='deactivate'),
|
||||
url(r'^reset_password/$', views.reset_market_password, name='reset_password'),
|
||||
url(r'^set_password/$', views.set_market_password, name='set_password'),
|
||||
]
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^evernus-market/', include(module_urls))
|
||||
url(r'^evernus-market/', include(module_urls, namespace='evernusmarket'))
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user