Browse Source

Add web/other/views.py: views not related to any app will be there

Now it has site-index view
pull/1/head
Hidden Z 14 years ago
parent
commit
d46a35bb89
  1. 9
      web/other/views.py

9
web/other/views.py

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
from django.shortcuts import render_to_response
from django.template import RequestContext
from web import settings
def index(request):
return render_to_response('index.html', {
'title': settings.SITE_NAME,
'domain': settings.DOMAIN,
})
Loading…
Cancel
Save