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" 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)