view apps/bundle/urls.py @ 170:3be23e2e8fe7

Use correct template for bundle explore page
author dellsystem <ilostwaldo@gmail.com>
date Sat, 20 Oct 2012 00:20:22 -0400
parents c7be7def8b57
children 86129d185ddb
line wrap: on
line source

from django.conf.urls.defaults import *


urlpatterns = patterns('apps.bundle.views',
    url(r'^(?P<user>[^/]+)/(?P<bundle>[^/]+)/(?P<path>.+)/$', 'file_detail',
        name='bundlefile_details'),
    url(r'^(?P<user>.*)/(?P<bundle>.*)/$', 'detail', name='bundle_details'),
    url(r'^$', 'index', name='bundle_new'),
    url(r'^explore$', 'explore', name='bundle_explore'),
)