Mercurial > hg-website
comparison hgscm/settings.py @ 78:8d25e34c21c2
templatetags: Add DownloadButton tag to display a download button according to operating system
This is somewhat a hacky way to do it, but it works, and we might redo it alter on.
author | David Soria Parra <dsp@php.net> |
---|---|
date | Fri, 20 Feb 2009 15:12:43 +0100 |
parents | fb737a306703 |
children | 4a8b12498bdf |
comparison
equal
deleted
inserted
replaced
77:fb737a306703 | 78:8d25e34c21c2 |
---|---|
71 | 71 |
72 TEMPLATE_DIRS = ( | 72 TEMPLATE_DIRS = ( |
73 os.path.join(BASE_DIR, "templates"), | 73 os.path.join(BASE_DIR, "templates"), |
74 ) | 74 ) |
75 | 75 |
76 TEMPLATE_CONTEXT_PROCESSORS = ( | |
77 'django.core.context_processors.request', | |
78 'django.core.context_processors.media', | |
79 ) | |
80 | |
76 INSTALLED_APPS = ( | 81 INSTALLED_APPS = ( |
77 'django.contrib.auth', | 82 'django.contrib.auth', |
78 'django.contrib.contenttypes', | 83 'django.contrib.contenttypes', |
79 'django.contrib.sessions', | 84 'django.contrib.sessions', |
80 'django.contrib.sites', | 85 'django.contrib.sites', |