~anna-granudd/mailmanweb/systers_ui

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- coding: utf-8 -*-
from django.conf.urls.defaults import *
from django.conf import settings

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

from systers_ui.mailman_django import urls as mailman_urls
from systers_ui.systers_django import urls as systers_urls

urlpatterns = patterns('',
    #(r'^$', 'list_index'),
    #(r'^systers/$', 'systers_index'),
    #url(r'lists/$', 'list_index', name = 'list_index'),
    #url(r'lists/new/$', 'list_new', name = 'list_new'),
    #url(r'lists/(?P<fqdn_listname>.+)/$', 'list_info', name = 'list_info'),

    (r'^mailman_django/', include(mailman_urls)),
    (r'^systers_django/', include(systers_urls)),

    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
    # to INSTALLED_APPS to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    (r'^admin/', include(admin.site.urls)),
)