diff --git a/.dockerignore b/.dockerignore index 9a83ace..1dd38a1 100644 --- a/.dockerignore +++ b/.dockerignore @@ -12,4 +12,5 @@ data_files/ .gitignore node_modules **/node_modules -npm-debug.log \ No newline at end of file +npm-debug.log + diff --git a/Dockerfile b/Dockerfile index 7e1f1a6..1838514 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,8 @@ RUN apt-get update && apt-get install -y npm curl && apt-get clean # Install Python deps COPY requirements.txt . -RUN pip install --upgrade pip && pip install -r requirements.txt +RUN pip install --upgrade pip +RUN pip install -r requirements.txt # Copy code COPY . . diff --git a/core/static/core/images/dakota_profile.png b/core/static/core/images/dakota_profile.png new file mode 100644 index 0000000..c7d1028 Binary files /dev/null and b/core/static/core/images/dakota_profile.png differ diff --git a/core/templates/core/about.html b/core/templates/core/about.html index ec68309..8fe78fb 100755 --- a/core/templates/core/about.html +++ b/core/templates/core/about.html @@ -255,6 +255,29 @@

Caroline aka 'Bailey' Potter

+
+

Dakota Riley

+
+ Dakota Avatar + +
{%endblock%} diff --git a/core/templates/core/contact.html b/core/templates/core/contact.html index 236efb0..b6f327e 100644 --- a/core/templates/core/contact.html +++ b/core/templates/core/contact.html @@ -6,7 +6,7 @@ {% block content %} {% load static %} - +{% comment %} {% endcomment %} {% if messages %} {% endif %} -
+
{% csrf_token %} -

Contact us

-
+

Contact us

+ {% comment %}
{% endcomment %} -
- - +
+ + - - + + - - + +
-
+
@@ -42,22 +42,22 @@

Contact us

- - + + - +
-
+
- +
-
- +
+
diff --git a/docker-compose.yml b/docker-compose.yml index a6be0af..9850674 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -37,6 +37,15 @@ services: # Optional: expose for local tools like psql/GUI ports: - "5432:5432" + + # Example addition to docker-compose.yml + tailwind: + build: . + command: python manage.py tailwind start + volumes: + - .:/app + depends_on: + - club volumes: pgdata: \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 9615408..4ee2d7f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ asgiref==3.8.1 -Django==4.2.23 +django==4.2.23 django-tailwind django-tailwind[reload] sqlparse==0.5.3