Skip to content
Snippets Groups Projects
Commit f6ea5a5d authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Rename the templates to play nice with the new app_label

parent 618f56ad
No related branches found
No related tags found
No related merge requests found
......@@ -7,14 +7,14 @@ class ProjectsBlock(StaticBlock):
class Meta:
icon = 'grip'
label = 'List of Projects funded'
template = 'funds/blocks/related_projects.html'
template = 'public_funds/blocks/related_projects.html'
class ReviewersBlock(StaticBlock):
class Meta:
icon = 'grip'
label = 'List of fund Reviewers'
template = 'funds/blocks/related_reviewers.html'
template = 'public_funds/blocks/related_reviewers.html'
class FundBlock(StoryBlock):
......
{% for project in page.projects %}
{% include "publicpages/includes/project_listing.html" with project=project %}
{% include "public_funds/includes/project_listing.html" with project=project %}
{% endfor %}
......@@ -2,7 +2,7 @@
{% load wagtailcore_tags wagtailimages_tags navigation_tags static %}
{% block content %}
{% include "publicpages/includes/fund_apply_cta.html" with fund_type=page.fund_type.specific %}
{% include "public_funds/includes/fund_apply_cta.html" with fund_type=page.fund_type.specific %}
<div class="wrapper wrapper--flex">
<section class="section section--main">
<h1>{{ page.title }}</h1>
......@@ -11,6 +11,6 @@
{% include_block page.body %}
</section>
</div>
{% include "publicpages/includes/fund_apply_cta.html" with fund_type=page.fund_type.specific %}
{% include "public_funds/includes/fund_apply_cta.html" with fund_type=page.fund_type.specific %}
{% include "includes/relatedcontent.html" with related_pages=page.related_pages.all %}
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment