diff --git a/src/gallery/templates/gallery/index.html b/src/gallery/templates/gallery/index.html new file mode 100644 index 0000000..4113775 --- /dev/null +++ b/src/gallery/templates/gallery/index.html @@ -0,0 +1,4 @@ +{% extends "base.html" %} +{% load static %} +{% block title %}Home{% endblock %} +{% block content %}

Welcome

{% endblock %} diff --git a/src/gallery/urls.py b/src/gallery/urls.py new file mode 100644 index 0000000..f347468 --- /dev/null +++ b/src/gallery/urls.py @@ -0,0 +1,9 @@ +from django.urls import path + +from . import views + +app_name = "gallery" + +urlpatterns = [ + path("", views.index, name="index"), +] diff --git a/src/gallery/views.py b/src/gallery/views.py index 91ea44a..fe31060 100644 --- a/src/gallery/views.py +++ b/src/gallery/views.py @@ -1,3 +1,5 @@ from django.shortcuts import render -# Create your views here. + +def index(request): + return render(request, "gallery/index.html") diff --git a/src/polls/templates/polls/index.html.1 b/src/polls/templates/polls/index.html.1 deleted file mode 100644 index d5cb959..0000000 --- a/src/polls/templates/polls/index.html.1 +++ /dev/null @@ -1,658 +0,0 @@ - - - - - - -Quatsh - Eindhovense Studenten Squash Rackets Vereniging - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
Menu
- - - - -
- - -
Menu
- - - - -
- - -
Menu
- - - - -
- - Become a member
  • Welcome to 
    E.S.S.R.V. Quatsh

    The most vibrant and friendliest student squash association 
    in the Netherlands
  • Become a Member!

    And be a part of the fastest growing student squash association of the Netherlands
  • What is Squash?

    Squash is a racket sport played by two players in a four-walled court with a small, hollow rubber ball. The objective is to hit the ball against the front wall in a way that makes it difficult for the opponent to return.

Who are we?

Training

Quatsh is here for every student, whether you are just starting out in squash or already a true pro!

Competition

Besides training, do you want to put your skills to work? There are competitions and tournaments!

Drinks

Besides sports, socializing is also a high priority, and so there are many club nights!

Activities

In addition to squash, there are plenty of different activities throughout the year.

Big Simple Page Break

M: board@quatsh.nl
B: NL86 BUNQ 2078 8328 71
KvK: 40238933
© Copyright 2026 - E.S.S.R.V.Quatsh - All Rights Reserved
"Beste site van het jaar!" - Qwebcie
- - - - - - -chevron-up - - - - - - - - linkedin - - - - - - facebook - - - - pinterest - - - - youtube - - - - rss - - - - twitter - - - - instagram - - - - - - facebook-blank - - - - rss-blank - - - - linkedin-blank - - - - pinterest - - - - youtube - - - - twitter - - - - instagram - - - - - - - - - - - - - - - - - - - diff --git a/src/polls/urls.py b/src/polls/urls.py index fc78e3e..6f3f224 100644 --- a/src/polls/urls.py +++ b/src/polls/urls.py @@ -2,6 +2,8 @@ from django.urls import path from . import views +app_name = "polls" + urlpatterns = [ # ex: /polls/ path("", views.index, name="index"), diff --git a/src/templates/components/topbar.html b/src/templates/components/topbar.html index ed0a97b..c313d04 100644 --- a/src/templates/components/topbar.html +++ b/src/templates/components/topbar.html @@ -1,4 +1,8 @@ diff --git a/src/website/settings.py b/src/website/settings.py index 0bc71fd..490b6ae 100644 --- a/src/website/settings.py +++ b/src/website/settings.py @@ -35,6 +35,7 @@ SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https") INSTALLED_APPS = [ "polls.apps.PollsConfig", "core.apps.CoreConfig", + "gallery.apps.GalleryConfig", "django.contrib.admin", "django.contrib.auth", "django.contrib.contenttypes", diff --git a/src/website/urls.py b/src/website/urls.py index b0f85c6..d4ec22a 100644 --- a/src/website/urls.py +++ b/src/website/urls.py @@ -23,6 +23,7 @@ from django.urls import include, path urlpatterns = [ path("", include("core.urls")), path("polls/", include("polls.urls")), + path("gallery/", include("gallery.urls")), path("admin/doc/", include("django.contrib.admindocs.urls")), path("admin/", admin.site.urls), ]