From 86468916784dcebc9262a73f508a1901eb97f620 Mon Sep 17 00:00:00 2001 From: Sheri Bigelow Date: Wed, 8 Jul 2020 18:49:20 -0600 Subject: [PATCH 1/2] Add title for July 2020 meetup --- slcpy/home/templates/home/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slcpy/home/templates/home/index.html b/slcpy/home/templates/home/index.html index a43ed81..8bcb597 100644 --- a/slcpy/home/templates/home/index.html +++ b/slcpy/home/templates/home/index.html @@ -14,7 +14,7 @@ "Our next meetup is on:" "{{ next_meetup.date|date:"l, F jS" }}, at {{ next_meetup.date|date:'P' }}" "and is about:" - "A trio of python talks: Beginning / Intermediate / Advanced" + "Streamlit with Scott Cronin & Onboarding to AWS w/Python & Cloud9 With Noah Gift" From 5a269be276b00ac1596f91ea7b4830fee05a265e Mon Sep 17 00:00:00 2001 From: Sheri Bigelow Date: Wed, 8 Jul 2020 18:54:19 -0600 Subject: [PATCH 2/2] Update Jul 2020 meetup info on home page Update the home page to show the latest meetup date and title. --- slcpy/home/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slcpy/home/views.py b/slcpy/home/views.py index bbb69cd..2e69d6d 100644 --- a/slcpy/home/views.py +++ b/slcpy/home/views.py @@ -7,7 +7,7 @@ def home(request): template = "home/index.html" ctx = { 'next_meetup': { - 'date': timezone.datetime(2018, 9, 5, 18, 30) + 'date': timezone.datetime(2020, 7, 8, 17, 30) } } return render(request, template, ctx)