/django/contrib/admin/templates/mako/registration/password_reset_email.html
https://code.google.com/p/mango-py/ · HTML · 18 lines · 14 code · 4 blank · 0 comment · 0 complexity · fab55386b91fb700eb0d6fc58f26d430 MD5 · raw file
- ${trans("You're receiving this e-mail because you requested a password reset")}
- for your user account at ${ site_name }.
- ${trans("Please go to the following page and choose a new password:")}
- <%def name="block_reset_link()">
- <%
- from django.core.urlresolvers import reverse
- from ccg.utils.webhelpers import url
- kwargs = { 'uidb36':uid,'token':token }
- %>
- ${ protocol }://${ domain }${reverse('django.contrib.auth.views.password_reset_confirm',kwargs=kwargs) }
- </%def>${block_reset_link()}
- ${trans("Your username, in case you've forgotten:")} ${ user.username }
- ${trans("Thanks for using our site!")}
- The ${ site_name } team