mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
* Refactor allianceauth into its own package * Add setup * Add missing default_app_config declarations * Fix timerboard namespacing * Remove obsolete future imports * Remove py2 mock support * Remove six * Add experimental 3.7 support and multiple Dj versions * Remove python_2_unicode_compatible * Add navhelper as local package * Update requirements
15 lines
335 B
Python
15 lines
335 B
Python
from django.conf.urls import url
|
|
import allianceauth.urls
|
|
from . import views
|
|
|
|
urlpatterns = allianceauth.urls.urlpatterns
|
|
|
|
urlpatterns += [
|
|
# Navhelper test urls
|
|
url(r'^main-page/$', views.page, name='p1'),
|
|
url(r'^main-page/sub-section/$', views.page, name='p1-s1'),
|
|
url(r'^second-page/$', views.page, name='p1'),
|
|
]
|
|
|
|
|