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

View File

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