Commit a16c567b by David Baumgold

Merge pull request #1431 from edx/db/password-reset-fix-static

password reset pages use Django templates, not Mako
parents 5c4c5765 3688f221
......@@ -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>
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment