Skip to content

Commit

Permalink
Merge branch 'master' into country-list-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pomax committed Jul 3, 2018
2 parents fbe3811 + 3b4c7f4 commit 3f62022
Show file tree
Hide file tree
Showing 10 changed files with 641 additions and 686 deletions.
4 changes: 2 additions & 2 deletions Pipfile
Expand Up @@ -8,7 +8,7 @@ Django = "==1.11.13"
gunicorn = "*"
djangorestframework = "*"
django-filter = "*"
Mezzanine = {git = "https://github.com/stephenmcd/mezzanine@521a98c39bb6351c4b46067069f33caf95fe0a5e", editable=true}
Mezzanine = {git = "https://github.com/stephenmcd/mezzanine@521a98c39bb6351c4b46067069f33caf95fe0a5e"}
"filebrowser-s3" = "*"
wagtail = "*"
wagtail-metadata = "*"
Expand All @@ -27,7 +27,7 @@ django-admin-sortable = "*"
requests = "*"
factory_boy = "*"
Faker = "*"
wagtail-factories = {git = "https://github.com/mvantellingen/wagtail-factories@1ead51cadaad3b4530ba2197ccf45d2dca87dbdf", editable=true}
wagtail-factories = {git = "https://github.com/mvantellingen/wagtail-factories@1ead51cadaad3b4530ba2197ccf45d2dca87dbdf"}

[dev-packages]
coverage = "*"
Expand Down
1,309 changes: 632 additions & 677 deletions Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion network-api/networkapi/templates/404.html
@@ -1,4 +1,4 @@
{% extends "pages/base-compiled.html" %} {% load wagtailcore_tags wagtailimages_tags %}
{% extends "pages/base.html" %} {% load wagtailcore_tags wagtailimages_tags %}

{% block bodyID %}404{% endblock%}

Expand Down
@@ -1,4 +1,4 @@
{% extends "./base-compiled.html" %}
{% extends "./base.html" %}

{% block bodyID %}{{ suffix }}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion network-api/networkapi/templates/pages/fellowships.html
@@ -1,4 +1,4 @@
{% extends "./base-compiled.html" %}
{% extends "./base.html" %}

{% load fellowship_active_nav %}

Expand Down
2 changes: 1 addition & 1 deletion network-api/networkapi/wagtailpages/models.py
Expand Up @@ -85,7 +85,7 @@ class ModularPage(MetadataPageMixin, Page):

# Legacy field for now, necessary to make sure that the
# actualy <title> element has the correct value in it.
# This uses page.meta_title in the base-compiled.html
# This uses page.meta_title in the base.html
# master template, which is still based on Mezzanine
# page models, rather than Wagtail pages models.
@property
Expand Down
@@ -1,4 +1,4 @@
{% extends "pages/base-compiled.html" %}
{% extends "pages/base.html" %}
{% load wagtailcore_tags wagtailimages_tags homepage_tags wagtailmetadata_tags %}

{% block bodyID %}home{% endblock %}
Expand Down
@@ -1,4 +1,4 @@
{% extends "pages/base-compiled.html" %}
{% extends "pages/base.html" %}

{% load wagtailcore_tags mini_site_tags wagtailmetadata_tags %}

Expand Down
2 changes: 1 addition & 1 deletion runtime.txt
@@ -1 +1 @@
python-3.6.4
python-3.6.5

0 comments on commit 3f62022

Please sign in to comment.