Compare commits

...

4 Commits

Author SHA1 Message Date
Víðir Valberg Guðmundsson c48cc3b347 Merge branch 'main' into services
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details
2024-01-14 12:52:56 +01:00
Víðir Valberg Guðmundsson f31cd62351 Implement django-view-decorator
continuous-integration/drone/push Build is passing Details
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)
continuous-integration/drone/push Build is passing Details
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
1 changed files with 9 additions and 0 deletions

View File

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