Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaswoehlke committed Jan 1, 2022
1 parent 34a5fe5 commit b94b890
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions project/data_owid/owid_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2825,4 +2825,15 @@ def url_owid_report_daily_new_estimated_infections_of_covid19():
page_info=page_info
)

@staticmethod
@app_owid_report.route("/government_response_stringency_index_vs_biweekly_change_in_confirmed_covid19_cases")
def url_owid_report_government_response_stringency_index_vs_biweekly_change_in_confirmed_covid19_cases():
page_info = WebPageContent(
"OWID", "Report", "government_response_stringency_index_vs_biweekly_change_in_confirmed_covid19_cases"
)
return render_template(
"owid/reports/report10/government_response_stringency_index_vs_biweekly_change_in_confirmed_covid19_cases.html",
page_info=page_info
)

owid_report_urls = OwidReportUrls()
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{% extends 'app_application/layout/page_layout.html' %}

{% block navtabs %}
{% include 'owid/navigation/owid_navtabs.html' %}
{% endblock %}

{% block content %}
{{super()}}

<div class="container">
<div class="row">
<div class="col">
<h3>{{ page_info.subtitle_info }}</h3>
</div>
</div>
</div>
{% endblock %}


{% block footer_container %}

{% endblock %}

0 comments on commit b94b890

Please sign in to comment.