membersystem/src/project/views.py
Víðir Valberg Guðmundsson f42101c476
All checks were successful
continuous-integration/drone/push Build is passing
Adding some titles
2023-10-02 20:50:39 +02:00

10 lines
186 B
Python

from utils.view_utils import render
def index(request):
return render(request, "index.html")
def services_overview(request):
return render(request, "services_overview.html")