2022-12-11 17:20:42 +03:00
|
|
|
from django.shortcuts import render
|
|
|
|
from django.http import HttpResponse
|
|
|
|
|
|
|
|
|
|
|
|
# Create your views here.
|
|
|
|
def index(request):
|
2022-12-11 18:02:38 +03:00
|
|
|
return render(request, 'main/index.html')
|
2022-12-11 17:20:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
def servers(request):
|
2022-12-11 18:02:38 +03:00
|
|
|
return render(request, 'main/servers.html')
|
2022-12-11 17:20:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
def mychat(request):
|
2022-12-11 18:02:38 +03:00
|
|
|
return render(request, 'main/mychat.html')
|
2022-12-11 17:20:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
def workout(request):
|
2022-12-11 18:02:38 +03:00
|
|
|
return render(request, 'main/workout.html')
|