9 lines
217 B
Python
9 lines
217 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('storycraft.views',
|
|
(r'^$', 'index'),
|
|
(r'^games/(?P<game_id>\d+)/$', 'game_index', dict(), 'game_index'),
|
|
)
|
|
|
|
# vi:tabstop=4:expandtab:autoindent
|