mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 08:35:41 +01:00
10 lines
349 B
Python
10 lines
349 B
Python
|
|
from django.conf.urls import patterns, include, url
|
||
|
|
from django.conf.urls.static import static
|
||
|
|
from django.conf import settings
|
||
|
|
|
||
|
|
|
||
|
|
urlpatterns = patterns('',
|
||
|
|
url(r'', include('pinry.core.urls', namespace='core')),
|
||
|
|
url(r'^pins/', include('pinry.pins.urls', namespace='pins')),
|
||
|
|
) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|