add settings.PLATFORM_NAME to password_reset_confirm context

This commit is contained in:
Adam Palay
2013-08-12 17:27:18 -04:00
parent 18a979bb4d
commit f9ab433e26
2 changed files with 26 additions and 5 deletions

View File

@@ -5,7 +5,11 @@
<html>
<head>
<title>{% trans "Reset Your edX Password" %}</title>
<title>
{% blocktrans with platform_name=platform_name %}
Reset Your {{ platform_name }} Password
{% endblocktrans %}
</title>
{% compressed_css 'application' %}
@@ -53,7 +57,11 @@
<section class="passwordreset container">
<section class="introduction">
<header>
<h1>{% trans "Reset Your edX Password" %}</h1>
<h1>
{% blocktrans with platform_name=platform_name %}
Reset Your {{ platform_name }} Password
{% endblocktrans %}
</h1>
</header>
</section>
@@ -66,7 +74,11 @@
<form role="form" id="passwordreset-form" method="post" data-remote="true" action="">{% csrf_token %}
<!-- status messages -->
<div role="alert" class="status message">
<h3 class="message-title">{% trans "We're sorry, edX enrollment is not available in your region" %}</h3>
<h3 class="message-title">
{% blocktrans with platform_name=platform_name %}
We're sorry, {{ platform_name }} enrollment is not available in your region
{% endblocktrans %}
</h3>
</div>
<div role="alert" class="status message submission-error">