Replace staticfiles in templates

This commit is contained in:
Scot Hacker 2018-12-20 16:41:34 -08:00
parent 8e16de5d8f
commit c6bd3bcdb0
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load staticfiles %} {% load static %}
{% block extrahead %} {% block extrahead %}
<!-- CSS and JavaScripts for django-todo --> <!-- CSS and JavaScripts for django-todo -->

View file

@ -1,5 +1,5 @@
{% extends "todo/base.html" %} {% extends "todo/base.html" %}
{% load staticfiles %} {% load static %}
{% block title %}Todo List: {{ task_list.name }}{% endblock %} {% block title %}Todo List: {{ task_list.name }}{% endblock %}