Mercurial > public > madeira
view articles/urls.py @ 130:3062c547bb90
For Django 1.6: new test discovery plus reverse now does urlquote().
My base64 keys were padded with '=' and these got quoted when doing
a reverse to generate the URL. So changed the test to look for a
quoted version of the key. This will change the URLs sent to users, but
I believe it will all be taken care of by Django.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 24 Dec 2013 16:47:27 -0600 |
parents | e2868ad47a1e |
children | 312f198e8958 |
line wrap: on
line source
""" Urls for the articles application. """ from django.conf.urls import patterns, url from django.views.generic import DetailView, ListView from articles.models import Article urlpatterns = patterns('', url(r'^$', ListView.as_view( model=Article, context_object_name='article_list'), name='articles-index'), url(r'^(?P<pk>\d+)/$', DetailView.as_view(model=Article, context_object_name='article'), name='articles-item') )