diff options
author | Sashi20 | 2019-09-09 15:43:31 +0530 |
---|---|---|
committer | GitHub | 2019-09-09 15:43:31 +0530 |
commit | e4d31dffa460e966c747d6fda847c8905474bdc5 (patch) | |
tree | a19547706eae7ae89d46503871edd3a2eb50e1b6 /website/views.py | |
parent | d278765e338662810e7937c2150f999e97bd2d9b (diff) | |
parent | d84267b8555a09e1500f839835439142d6c6fc95 (diff) | |
download | SciPy2019-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.py | 6 |
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)) |