Compare commits

..

4 commits

Author SHA1 Message Date
Víðir Valberg Guðmundsson c48cc3b347 Merge branch 'main' into services
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
2024-01-14 12:52:56 +01:00
Víðir Valberg Guðmundsson f31cd62351 Implement django-view-decorator
All checks were successful
continuous-integration/drone/push Build is passing
2024-01-14 12:27:36 +01:00
Víðir Valberg Guðmundsson b8a970d5fe Add missing migration 2024-01-14 12:14:51 +01:00
Halfdan Mouritzen 9dda7670df Minimal CSS for tables (#26)
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #26
Co-authored-by: Halfdan Mouritzen <halfdan@robothangarskib.dk>
Co-committed-by: Halfdan Mouritzen <halfdan@robothangarskib.dk>
2024-01-14 11:10:55 +00:00

View file

@ -10,3 +10,12 @@ from utils.view_utils import render
) )
def index(request): def index(request):
return render(request, "index.html") return render(request, "index.html")
@view(
paths="services/",
name="services",
login_required=True,
)
def services_overview(request):
return render(request, "services_overview.html")