2020-02-29 10:39:42 +00:00
|
|
|
# Copyright (C) 2020 by BDE ENS Paris-Saclay
|
|
|
|
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
|
|
|
|
|
|
class TombolaView(TemplateView):
|
|
|
|
template_name = "tombola.html"
|
2020-02-29 10:57:19 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super().get_context_data()
|
|
|
|
|
|
|
|
context['title'] = "Tombola Saper[list]popette"
|
|
|
|
|
|
|
|
return context
|