15 lines
331 B
Python
15 lines
331 B
Python
# Copyright (C) 2020 by BDE ENS Paris-Saclay
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class TombolaView(TemplateView):
|
|
template_name = "tombola.html"
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data()
|
|
|
|
context['title'] = "Tombola Saper[list]popette"
|
|
|
|
return context
|