Browse Source

fixed a few instances where the hc_extras wasn't loaded

pull/86/head
James Moore 8 years ago
parent
commit
537b7c7541
3 changed files with 4 additions and 3 deletions
  1. +2
    -1
      templates/emails/base.html
  2. +1
    -1
      templates/front/docs.html
  3. +1
    -1
      templates/front/docs_api.html

+ 2
- 1
templates/emails/base.html 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 -->


+ 1
- 1
templates/front/docs.html 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 %}


+ 1
- 1
templates/front/docs_api.html 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 %}


Loading…
Cancel
Save