diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-12-08 05:41:28 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2008-12-08 05:41:28 +0000 |
| commit | fa7aa7255ca990b2f13e615f023a958e54cb17d0 (patch) | |
| tree | 617f0e60cc0a768843b452f5f7acffe8fb298402 | |
| parent | 235600c3c340990e8d6d1b1baee3b749b1e7291a (diff) | |
Fixed #9732 -- Added missing close paragraph tag to password reset confirmation template, thanks casseen.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9599 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/templates/registration/password_reset_confirm.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/registration/password_reset_confirm.html b/django/contrib/admin/templates/registration/password_reset_confirm.html index 0d3eb385c9..049ee625a9 100644 --- a/django/contrib/admin/templates/registration/password_reset_confirm.html +++ b/django/contrib/admin/templates/registration/password_reset_confirm.html @@ -25,7 +25,7 @@ <h1>{% trans 'Password reset unsuccessful' %}</h1> -<p>{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %} +<p>{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}</p> {% endif %} |
