apply languages

This commit is contained in:
Egor Matveev
2022-02-20 12:33:19 +03:00
parent a422ab9ad3
commit cdb5157471
18 changed files with 233 additions and 1 deletions

7
Main/views/ChatsView.py Normal file
View File

@@ -0,0 +1,7 @@
from SprintLib.BaseView import BaseView
class ChatsView(BaseView):
view_file = "chats.html"
required_login = True
endpoint = "chats"

View File

@@ -17,3 +17,4 @@ from Main.views.SolutionsView import SolutionsView
from Main.views.SetView import SetView
from Main.views.GroupView import GroupView
from Main.views.CheckersView import CheckersView
from Main.views.ChatsView import ChatsView