Skip to content

Commit

Permalink
Add self-research info page
Browse files Browse the repository at this point in the history
  • Loading branch information
madprime committed Jan 23, 2020
1 parent c3af7a3 commit 1c77de6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions open_humans/templates/pages/self-research.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{% extends 'base-bs4.html' %}

{% block head_title %}Self Research{% endblock %}

{% block main %}
<p class="text-muted"><i>This page contains extended information about the
<a href="https://www.openhumans.org/activity/keating-memorial-self-research/">Keating
Memorial Self Research</a> activity run by Open Humans.
</i></p>
<div class="embed-responsive embed-responsive-1by1">
<iframe class="embed-responsive-item" src="https://docs.google.com/document/d/e/2PACX-1vReHFVpQcby_wBSGvWZ6UztOnN7duRUTTylpAVzHtvLncr6dFXhqZ398NkK6hu4VFyKXVYcPAfYH2RN/pub?embedded=true"></iframe>
</div>
{% endblock main %}
5 changes: 5 additions & 0 deletions open_humans/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,11 @@
),
name="data-processing-activities",
),
path(
"self-research/",
TemplateView.as_view(template_name="pages/self-research.html"),
name="self-research",
),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

if settings.DEBUG or settings.TESTING:
Expand Down

0 comments on commit 1c77de6

Please sign in to comment.