comparison gpp/urls.py @ 6:b6263ac72052

Use DRY principle to manage third party javascript libraries. Created script_tags template tags to generate the correct link and script tags for 3rd party libraries. The settings.py file is the only place where the full path name is specified.
author Brian Neal <bgneal@gmail.com>
date Sat, 11 Apr 2009 22:50:56 +0000
parents dbd703f7d63a
children f408971657b9
comparison
equal deleted inserted replaced
5:63696b279e35 6:b6263ac72052
1 from django.conf.urls.defaults import * 1 from django.conf.urls.defaults import *
2 2 from django.conf import settings
3 import settings
4 from django.contrib import admin 3 from django.contrib import admin
5 from news.feeds import LatestNewsFeed 4 from news.feeds import LatestNewsFeed
6 5
7 admin.autodiscover() 6 admin.autodiscover()
8 7