From bda65958fb6c1fb45721e9c722543b8dd2019a0b Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Tue, 19 Mar 2019 22:34:03 -0700 Subject: [PATCH] add pagecss and pagejs blocks --- templates/base.html | 5 +++-- templates/catalogedit/catalogedit.html | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/templates/base.html b/templates/base.html index bb188ce..4a79297 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,5 +1,4 @@ -{% load staticfiles %} -{% load i18n %} +{% load staticfiles i18n %} @@ -12,6 +11,8 @@ + {% block pagecss %}{% endblock %} + {% block pagejs %}{% endblock %} {% include "nav.html" %} diff --git a/templates/catalogedit/catalogedit.html b/templates/catalogedit/catalogedit.html index 7edf564..1b81b77 100644 --- a/templates/catalogedit/catalogedit.html +++ b/templates/catalogedit/catalogedit.html @@ -1,5 +1,5 @@ {% extends 'base.html' %} -{% load i18n %} +{% load staticfiles i18n %} {% block title %}{% trans "Editor"%}{% endblock %}