Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion slcpy/home/templates/home/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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"
</code>
</pre>

Expand Down
2 changes: 1 addition & 1 deletion slcpy/home/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)