mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-06 06:53:06 +00:00
9 lines
196 B
Python
9 lines
196 B
Python
# Copyright (C) 2023 by Animath
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class DisplayView(TemplateView):
|
|
template_name = 'draw/index.html'
|