Skip to content

Commit

Permalink
Merge pull request #178 from CSUA/laurence/minutes
Browse files Browse the repository at this point in the history
Embed public meeting minutes
  • Loading branch information
potatoboiler authored Oct 12, 2023
2 parents 3f804b7 + d01a5c1 commit d52f50f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/main_page/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@
path("profile/", views.profile, name="my_profile"),
path("profile/<username>/", views.profile, name="profile"),
path("404/", TemplateView.as_view(template_name="404.html")),
path("minutes/", TemplateView.as_view(template_name="meeting_minutes.html")),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
5 changes: 5 additions & 0 deletions templates/meeting_minutes.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% extends "base.html" %}
{% block title %}Meeting Minutes{% endblock %}
{% block content %}
<iframe src="https://docs.google.com/document/d/e/2PACX-1vQtS-SR_bg2Ra_VrPlceHr9icG4I7_qv1lZK_hkqadp1RsC-2Jzo3QgNk8TWiiyOISfldc4WVlQwsVv/pub?embedded=true"></iframe>
{% endblock %}

0 comments on commit d52f50f

Please sign in to comment.