7 lines
113 B
Python
7 lines
113 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
urlpatterns = patterns('oxdata.poster.views',
|
||
|
(r'^$', 'poster'),
|
||
|
)
|
||
|
|