public
Description: Sample paste bin Django application for the Pinax platform
Homepage: http://fernandoacorreia.wordpress.com/tag/pinax/
Clone URL: git://github.com/fernandoacorreia/oxybeles.git
oxybeles / urls.py
100644 11 lines (9 sloc) 0.25 kb
1
2
3
4
5
6
7
8
9
10
11
from django.conf.urls.defaults import *
 
urlpatterns = patterns('',
    url(r'^$',
        'oxybeles.views.new',
        name='oxybeles_new'),
    url(r'^(?P<uuid>[-0-9a-f]{36})/$',
        'oxybeles.views.detail',
        name='oxybeles_detail'),
)