Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wiseplat
GitHub Repository: wiseplat/python-code
Path: blob/master/ invest-robot-contest_tinkoff_trading_contest-main/tinkoff_contest/main_app/views.py
7833 views
1
from django.shortcuts import render
2
from django.views import View
3
4
5
# Create your views here.
6
class MainPage(View):
7
8
@staticmethod
9
def get(request):
10
return render(request, "main_app/main.html")
11