mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-30 04:47:09 +01:00
10 lines
245 B
Python
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") |