diff options
Diffstat (limited to 'djangoproject/templates/registration')
8 files changed, 12 insertions, 9 deletions
diff --git a/djangoproject/templates/registration/activate.html b/djangoproject/templates/registration/activate.html index b11ec992..d525ebc2 100644 --- a/djangoproject/templates/registration/activate.html +++ b/djangoproject/templates/registration/activate.html @@ -11,4 +11,4 @@ the activation key for your account has expired; activation keys are only valid for {{ days }} days after registration. {% endblocktranslate %}</p> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/registration/activation_complete.html b/djangoproject/templates/registration/activation_complete.html index 27eab6d8..1991768c 100644 --- a/djangoproject/templates/registration/activation_complete.html +++ b/djangoproject/templates/registration/activation_complete.html @@ -11,4 +11,4 @@ Thanks for signing up! Now you can <a href="{{ login_url }}">log in</a>. {% endblocktranslate %} </p> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/registration/base.html b/djangoproject/templates/registration/base.html index 60c13d94..ff6e29db 100644 --- a/djangoproject/templates/registration/base.html +++ b/djangoproject/templates/registration/base.html @@ -1,4 +1,5 @@ {% extends "base_2col.html" %} {% load i18n %} {% block sectionid %}community{% endblock %} + {% block header %}<p>{% translate "Accounts" %}</p>{% endblock %} diff --git a/djangoproject/templates/registration/logged_out.html b/djangoproject/templates/registration/logged_out.html index 55659c0e..899e3e70 100644 --- a/djangoproject/templates/registration/logged_out.html +++ b/djangoproject/templates/registration/logged_out.html @@ -11,4 +11,4 @@ Thanks for stopping by; when you come back, don't forget to <a href="{{ login_url }}">log in</a> again. {% endblocktranslate %} </p> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/registration/login.html b/djangoproject/templates/registration/login.html index d33eb5e2..3a812a53 100644 --- a/djangoproject/templates/registration/login.html +++ b/djangoproject/templates/registration/login.html @@ -2,7 +2,9 @@ {% load i18n %} {% block title %}{% translate "Log in" %}{% endblock %} + {% block og_title %}{% translate "Log in" %}{% endblock %} + {% block og_description %}{% translate "Log in to your account" %}{% endblock %} {% block content %} @@ -37,7 +39,7 @@ <input type="submit" value="{% translate 'Log in' %}" class="cta"/> </p> </form> -{% endblock %} +{% endblock content %} {% block content-related %} <div role="complementary"> @@ -57,4 +59,4 @@ {% endblocktranslate %} </p> </div> -{% endblock %} +{% endblock content-related %} diff --git a/djangoproject/templates/registration/password_reset_email.html b/djangoproject/templates/registration/password_reset_email.html index b5026d42..351bcdc3 100644 --- a/djangoproject/templates/registration/password_reset_email.html +++ b/djangoproject/templates/registration/password_reset_email.html @@ -6,7 +6,7 @@ {% translate "Please go to the following page and choose a new password:" %} {% block reset_link %} {% url 'password_reset_confirm' uidb64=uid token=token %} - {% endblock %} + {% endblock reset_link %} {% translate "Your username, in case you've forgotten:" %} {{ user.username }} {% translate "Thanks for using our site!" %} diff --git a/djangoproject/templates/registration/registration_complete.html b/djangoproject/templates/registration/registration_complete.html index b1b1deea..258f4291 100644 --- a/djangoproject/templates/registration/registration_complete.html +++ b/djangoproject/templates/registration/registration_complete.html @@ -11,4 +11,4 @@ for activating your account. {% endblocktranslate %} </p> -{% endblock %} +{% endblock content %} diff --git a/djangoproject/templates/registration/registration_form.html b/djangoproject/templates/registration/registration_form.html index 0d8e9659..e8eb38a4 100644 --- a/djangoproject/templates/registration/registration_form.html +++ b/djangoproject/templates/registration/registration_form.html @@ -45,7 +45,7 @@ </p> </form> -{% endblock %} +{% endblock content %} {% block content-related %} <div role="complementary"> @@ -79,4 +79,4 @@ {% endblocktranslate %} </p> </div> -{% endblock %} +{% endblock content-related %} |
