mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
18 lines
527 B
Python
18 lines
527 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def projects(request):
|
|
return render(request, "projects/projects.html", {"title": "Projects"})
|
|
|
|
|
|
def karbs(request):
|
|
return render(request, "projects/karbs/karbs/karbs", {"title": "KARBS"})
|
|
|
|
|
|
def instructions(request):
|
|
return render(request, "projects/karbs/instructions.html", {"title": "Karbs Instructions"})
|
|
|
|
|
|
def traffic_light_detector(request):
|
|
return render(request, "projects/traffic_light_detector/traffic_light_detector.html", {"title": "Traffic Light Detector"})
|