fnp
/
koed-quiz.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
server in fabfile
[koed-quiz.git]
/
apps
/
quiz
/
urls.py
1
from django.conf.urls.defaults import *
2
3
4
urlpatterns = patterns('quiz.views',
5
url(r'^$', 'question', name='quiz'),
6
url(r'^q/(?P<slug>[-a-z0-9]*)/$', 'question', name='quiz'),
7
url(r'^r/(?P<slug>[-a-z0-9]*)/$', 'result', name='quiz_result'),
8
)