password reset pages use Django templates, not Mako

This commit is contained in:
David Baumgold
2013-10-21 14:52:41 -04:00
parent f7c979c219
commit 3688f221e3
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@
<header class="global">
<nav>
<h1 class="logo">
<a href="{{MKTG_URL_ROOT}}"><img src="${static.url('images/header-logo.png')}"></a>
<a href="{{MKTG_URL_ROOT}}"><img src="{% static 'images/header-logo.png' %}"></a>
</h1>
</nav>
</header>

View File

@@ -48,7 +48,7 @@
<header class="global">
<nav>
<h1 class="logo">
<a href="{{MKTG_URL_ROOT}}"><img src="${static.url('images/header-logo.png')}"></a>
<a href="{{MKTG_URL_ROOT}}"><img src="{% static 'images/header-logo.png' %}"></a>
</h1>
</nav>
</header>