2024-04-22 22:22:18 +00:00
|
|
|
# Copyright (C) 2024 by Animath
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2024-04-27 06:57:01 +00:00
|
|
|
|
|
|
|
from django.urls import path
|
2024-04-27 17:12:11 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2024-04-27 17:11:03 +00:00
|
|
|
from django.views.generic import TemplateView
|
2024-04-27 06:57:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
app_name = 'chat'
|
|
|
|
|
|
|
|
urlpatterns = [
|
2024-04-27 17:12:11 +00:00
|
|
|
path('', TemplateView.as_view(template_name="chat/chat.html", extra_context={'title': _("Chat")}), name='chat'),
|
2024-04-27 17:11:03 +00:00
|
|
|
path('fullscreen/', TemplateView.as_view(template_name="chat/fullscreen.html"), name='fullscreen'),
|
2024-04-27 06:57:01 +00:00
|
|
|
]
|