view bns_website/urls.py @ 68:1d50a0db4f21

- I moved the jplayer files to a jplayer dir under static/js. I thought about moving the flash file to another dir, but thought it'd be best to leave it with the rest of the jplayer files. - I removed some rogue colons in the music.html template.
author Bob Mourlam <bob.mourlam@gmail.com>
date Wed, 23 Nov 2011 09:16:47 -0600
parents a0d3bc630ebd
children 1b5def90f5bf
line wrap: on
line source
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin
from django.views.generic.base import TemplateView
from django.views.generic import ListView

from bands.models import Band
from news.models import News
from reviews.models import Review

admin.autodiscover()

urlpatterns = patterns('',
    url(r'^$',
        TemplateView.as_view(template_name="home.html"),
        name="home"),
    url(r'^reviews/$',
        ListView.as_view(model=Review),
        name="reviews"),
    url(r'^bands/$',
        ListView.as_view(model=Band),
        name="bands"),
    url(r'^news/$',
        ListView.as_view(model=News),
        name="news"),
    url(r'^listen/$',
        TemplateView.as_view(template_name="music.html"),
        name="music"),
    url(r'^watch/$', include('videos.urls')),
    url(r'^buy/$',
        TemplateView.as_view(template_name="buy.html"),
        name="buy"),
    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
    url(r'^admin/', include(admin.site.urls)),
)