From e3f41b4b317ff64181d3f728e73ab9c8390ffd60 2016-06-27 03:21:24 From: Scott Bragg Date: 2016-06-27 03:21:24 Subject: [PATCH] Should fix Markdown (#25) * Markdown editor missing from scripts * Oops forgot staticfiles on wagtail base --- diff --git a/pinaxcon/templates/site_base.html b/pinaxcon/templates/site_base.html index 0cf9670bab471697580019a02f11ea1cbf2925a7..4521794e7d7a15201240b642692da70f16fc4c80 100755 --- a/pinaxcon/templates/site_base.html +++ b/pinaxcon/templates/site_base.html @@ -100,6 +100,8 @@ {% block scripts %} + {% include "_scripts.html" %} + {% block extra_script %}{% endblock %} {% endblock %} {% block extra_body_base %} diff --git a/pinaxcon/templates/site_base_wagtail.html b/pinaxcon/templates/site_base_wagtail.html index bd35083366e58ca2b12f804cb39a6a9af632d5ad..dc7d675968b16f745e253fda3ad1eae5fdc868ea 100644 --- a/pinaxcon/templates/site_base_wagtail.html +++ b/pinaxcon/templates/site_base_wagtail.html @@ -1,4 +1,5 @@ {% extends "site_base.html" %} +{% load staticfiles %} {% block extra_style %}{% endblock %} {% block body_base %}
@@ -9,3 +10,7 @@ {% endblock %} {% endblock %} {% endblock %} + +{% block scripts %} + +{% endblock %}