from django.conf.urls.defaults import * from fortunes.models import Fortune urlpatterns = patterns('fortunes.views', url(r'^$', 'fortune_show', name='fortune_list'), url(r'^(?Ptop|flop)/$', 'fortune_show', name='fortune_rank'), url(r'^(?P\d+)/$', 'fortune_show', name='fortune_detail'), url(r'^add/$', 'fortune_add', name='fortune_add'), url(r'^(?P\d+)/(?Ppour|contre)/$', 'vote', name='fortune_vote'), )