kavanland
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 (421 bytes)

from django.conf import settings
from django.conf.urls import url, include
from django.contrib import admin
from django.conf.urls.static import static


urlpatterns = [
    url(r'^admin/', include(admin.site.urls)),
    url(r'^ckeditor/', include('ckeditor_uploader.urls')),

    url(r'^', include('aacore.urls')),
    url(r'^', include('twitblr.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)