Skip to content

Instantly share code, notes, and snippets.

@refack
Created November 25, 2012 16:18
Show Gist options
  • Save refack/4144214 to your computer and use it in GitHub Desktop.
Save refack/4144214 to your computer and use it in GitHub Desktop.
View for static files in Django
from django.conf.urls.defaults import *
from django.views.generic.simple import direct_to_template
urlpatterns = patterns('',
('^about/$', direct_to_template, {
'template': 'about.html'
})
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment