diff --git a/core/templates/base.html b/core/templates/base.html
index c3ee757..d58bb25 100644
--- a/core/templates/base.html
+++ b/core/templates/base.html
@@ -46,6 +46,8 @@
About Us
|
Contact Us
+ |
+ Meetings
{%block content%}{%endblock%}
@@ -58,6 +60,7 @@ Coding United Commons
About US
Contact US
+ Meetings
diff --git a/core/templates/core/about.html b/core/templates/core/about.html
index 8f2cd75..74a5bbe 100755
--- a/core/templates/core/about.html
+++ b/core/templates/core/about.html
@@ -190,14 +190,13 @@ Devell Robinson
- - Major:
- - Concentration:
+ - Major: Computer Science
+ - Concentration: Software Engineering
-
Goals:
- - GOAL 1
- - GOAL 2
- - GOAL 3
+ - Create an inclusive social platform designed for developers of all backgrounds, skill levels, and specialties.
+ It will foster collaboration, learning, and community across every area of software development.
diff --git a/core/templates/core/session.html b/core/templates/core/session.html
new file mode 100644
index 0000000..9976744
--- /dev/null
+++ b/core/templates/core/session.html
@@ -0,0 +1,17 @@
+{%extends "base.html"%}
+{% load static tailwind_tags %}
+
+{%block title%}
+ Session Recordings
+{%endblock%}
+
+{%block content%}
+
+
Session Recordings
+
+ {% for recording in recordings %}
+ - {{ recording.session_name }} - {{ recording.recording_date }}
+ {% endfor %}
+
+
+{%endblock%}
\ No newline at end of file
diff --git a/core/urls.py b/core/urls.py
index 10d3b4c..3fc19e7 100644
--- a/core/urls.py
+++ b/core/urls.py
@@ -1,13 +1,15 @@
from django.urls import path
-from .views import home, about, errorPage, contact
+from .views import home, about, errorPage, contact, session
urlpatterns = [
path('', home, name='home'),
path('about/', about, name='about'),
- path('contact/', contact, name='contact')
+ path('contact/', contact, name='contact'),
+ path('session/', session, name='session'),
+
]
handler404 = errorPage
diff --git a/core/views.py b/core/views.py
index fa5e0f0..73deb15 100644
--- a/core/views.py
+++ b/core/views.py
@@ -12,6 +12,8 @@ def home(request):
def about(request):
return render(request, 'core/about.html')
+def session(request):
+ return render(request, 'core/session.html')
def contact(request):
if request.method == "POST":