Files
tealcode-django-python/TealCode/main/views.py
2021-11-10 08:54:20 +01:00

10 lines
245 B
Python

from django.shortcuts import render
def index(req):
return render(req, "main/index.html")
def topic(req, category, topic):
return render(req, "main/topic.html")
def category(req, category):
return render(req, "main/category.html")