add settings.PLATFORM_NAME to password_reset_confirm context
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user