fixed a few instances where the hc_extras wasn't loaded

This commit is contained in:
James Moore 2016-09-22 16:11:20 -07:00
parent 89736d7ce7
commit 537b7c7541
3 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,4 @@
{% load hc_extras %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
@ -184,7 +185,7 @@
<!-- Logo --> <!-- Logo -->
<tr> <tr>
<td class="email-masthead"> <td class="email-masthead">
<img src="{{ SITE_ROOT }}/static/img/logo-full.png" alt="" /> <img src="{% site_root %}/static/img/logo-full.png" alt="" />
</td> </td>
</tr> </tr>
<!-- Email Body --> <!-- Email Body -->

View File

@ -1,5 +1,5 @@
{% extends "front/base_docs.html" %} {% extends "front/base_docs.html" %}
{% load staticfiles %} {% load staticfiles hc_extras %}
{% block title %}Documentation - {% site_name %}{% endblock %} {% block title %}Documentation - {% site_name %}{% endblock %}

View File

@ -1,5 +1,5 @@
{% extends "front/base_docs.html" %} {% extends "front/base_docs.html" %}
{% load staticfiles %} {% load staticfiles hc_extras %}
{% block title %}REST API - {% site_name %}{% endblock %} {% block title %}REST API - {% site_name %}{% endblock %}