cleans up home page header design, adds social sharing to header, adds tos, privacy policy, honor code, help and copyright pages, add liks to those pages in footer, finished contact page

This commit is contained in:
Galen Frechette
2012-07-12 14:48:34 -04:00
parent 1ea8bd2666
commit 35c5de8128
23 changed files with 1045 additions and 718 deletions

View File

@@ -13,6 +13,7 @@ valid_templates=['index.html',
'tos.html',
'privacy.html',
'honor.html',
'help.html',
'copyright.html',
'404.html',
'mitx_help.html',
@@ -20,10 +21,9 @@ valid_templates=['index.html',
'about.html',
'faq.html',
'press.html',
'contact.html',
'terms_and_conditions.html']
'contact.html']
if settings.STATIC_GRAB:
if settings.STATIC_GRAB:
valid_templates = valid_templates+['server-down.html',
'server-error.html'
'server-overloaded.html',
@@ -33,7 +33,7 @@ if settings.STATIC_GRAB:
'6002x-press-release.html'
]
def index(request, template):
def index(request, template):
csrf_token = csrf(request)['csrf_token']
if template in valid_templates:
return render_to_response(template, {'error' : '',
@@ -43,7 +43,7 @@ def index(request, template):
valid_auth_templates=['help.html']
def auth_index(request, template):
def auth_index(request, template):
if not request.user.is_authenticated():
return redirect('/')