extrapole
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

urls.py
text/x-python

Download raw (344 bytes)

from django.conf.urls import patterns, include, url

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

urlpatterns = patterns('',
    url(r'^$', 'extrapole.views.home', name='home'),
    url(r'^maildir/', include('django_maildir.urls')),
    url(r'^admin/', include(admin.site.urls)),
)