Big Mailman update
This commit is contained in:
parent
4e57205cc7
commit
7f27054e60
11 changed files with 155 additions and 122 deletions
|
@ -1,27 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import hyperkitty
|
||||
import postorius
|
||||
|
||||
from django.conf.urls import patterns, include, url
|
||||
from django.conf import settings
|
||||
|
||||
# Uncomment the next two lines to enable the admin:
|
||||
from django.conf.urls import include, url
|
||||
from django.contrib import admin
|
||||
admin.autodiscover()
|
||||
|
||||
from django.core.urlresolvers import reverse_lazy
|
||||
from django.views.generic import RedirectView
|
||||
|
||||
urlpatterns = patterns('',
|
||||
urlpatterns = [
|
||||
url(r'^$', RedirectView.as_view(
|
||||
url=reverse_lazy('hyperkitty.views.index.index'),
|
||||
permanent=True)),
|
||||
#url(r'^$', 'postorius.views.list_index'),
|
||||
url(r'^admin/', include('postorius.urls')),
|
||||
url(r'^archives/', include('hyperkitty.urls')),
|
||||
# Social Auth
|
||||
url(r'', include('social.apps.django_app.urls', namespace='social')),
|
||||
# BrowserID
|
||||
url(r'', include('django_browserid.urls')),
|
||||
)
|
||||
url(r'', include('django_mailman3.urls')),
|
||||
url(r'^accounts/', include('allauth.urls')),
|
||||
url(r'^django-admin/', include(admin.site.urls)),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue