Mercurial > public > sg101
diff gpp/downloads/admin.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 | d6f3c38e8f50 |
line wrap: on
line diff
--- a/gpp/downloads/admin.py Sat Apr 11 19:45:17 2009 +0000 +++ b/gpp/downloads/admin.py Sat Apr 11 22:50:56 2009 +0000 @@ -2,6 +2,8 @@ This file contains the automatic admin site definitions for the downloads models. """ from django.contrib import admin +from django.conf import settings + from downloads.models import Download from downloads.models import Category from downloads.models import AllowedExtension @@ -20,15 +22,11 @@ class Media: css = { - 'all': ('js/markitup/skins/markitup/style.css', - 'js/markitup/sets/markdown/style.css') + 'all': settings.GPP_THIRD_PARTY_CSS['markitup'], } - js = ( - 'js/jquery-1.2.6.min.js', - 'js/markitup/jquery.markitup.pack.js', - 'js/markitup/sets/markdown/set.js', - 'js/downloads_admin.js', - ) + js = settings.GPP_THIRD_PARTY_JS['jquery'] + \ + settings.GPP_THIRD_PARTY_JS['markitup'] + \ + ('js/downloads_admin.js', ) class VoteRecordAdmin(admin.ModelAdmin):