summaryrefslogtreecommitdiff
path: root/website/views.py
diff options
context:
space:
mode:
authorSashi202019-09-09 15:43:31 +0530
committerGitHub2019-09-09 15:43:31 +0530
commite4d31dffa460e966c747d6fda847c8905474bdc5 (patch)
treea19547706eae7ae89d46503871edd3a2eb50e1b6 /website/views.py
parentd278765e338662810e7937c2150f999e97bd2d9b (diff)
parentd84267b8555a09e1500f839835439142d6c6fc95 (diff)
downloadSciPy2019-e4d31dffa460e966c747d6fda847c8905474bdc5.tar.gz
SciPy2019-e4d31dffa460e966c747d6fda847c8905474bdc5.tar.bz2
SciPy2019-e4d31dffa460e966c747d6fda847c8905474bdc5.zip
Merge pull request #7 from Sashi20/development
Update keynote speaker details, modify poster
Diffstat (limited to 'website/views.py')
-rw-r--r--website/views.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/website/views.py b/website/views.py
index ced25c1..2a93c36 100644
--- a/website/views.py
+++ b/website/views.py
@@ -42,10 +42,8 @@ def index(request):
context = {}
registration_details = RegistrationDetail.objects.all()
context['registration_details'] = registration_details
- # regular_dates = ImportantDate.objects.get(category='Regular')
- # context['regular_dates'] = regular_dates
- # lite_dates = ImportantDate.objects.get(category='Lite')
- # context['lite_dates'] = lite_dates
+ cfp_dates = CFP.objects.get(id=1)
+ context['cfp_dates'] = cfp_dates
template = loader.get_template('index.html')
return HttpResponse(template.render(context, request))