django-site/main/views.py

20 lines
400 B
Python
Raw Normal View History

from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return render(request, 'main/index.html')
def servers(request):
return render(request, 'main/servers.html')
def mychat(request):
return render(request, 'main/mychat.html')
def workout(request):
return render(request, 'main/workout.html')