/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

  1. ${trans("You're receiving this e-mail because you requested a password reset")}
  2. for your user account at ${ site_name }.
  3. ${trans("Please go to the following page and choose a new password:")}
  4. <%def name="block_reset_link()">
  5. <%
  6. from django.core.urlresolvers import reverse
  7. from ccg.utils.webhelpers import url
  8. kwargs = { 'uidb36':uid,'token':token }
  9. %>
  10. ${ protocol }://${ domain }${reverse('django.contrib.auth.views.password_reset_confirm',kwargs=kwargs) }
  11. </%def>${block_reset_link()}
  12. ${trans("Your username, in case you've forgotten:")} ${ user.username }
  13. ${trans("Thanks for using our site!")}
  14. The ${ site_name } team