add pagecss and pagejs blocks

This commit is contained in:
Seth Ladygo
2019-03-19 22:34:03 -07:00
parent 07ebabee86
commit bda65958fb
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,4 @@
{% load staticfiles %} {% load staticfiles i18n %}
{% load i18n %}
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
@ -12,6 +11,8 @@
<script src="{% static 'js/uikit.min.js' %}"></script> <script src="{% static 'js/uikit.min.js' %}"></script>
<script src="{% static 'js/uikit-icons.min.js' %}"></script> <script src="{% static 'js/uikit-icons.min.js' %}"></script>
<script src="{% static 'js/vue.js' %}"></script> <script src="{% static 'js/vue.js' %}"></script>
{% block pagecss %}{% endblock %}
{% block pagejs %}{% endblock %}
</head> </head>
<body> <body>
{% include "nav.html" %} {% include "nav.html" %}

View File

@ -1,5 +1,5 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% load i18n %} {% load staticfiles i18n %}
{% block title %}{% trans "Editor"%}{% endblock %} {% block title %}{% trans "Editor"%}{% endblock %}