eric 2016-07-27 14:01:22 -04:00
parent 827c33e7a0
commit 006aeaf66f
2 changed files with 3 additions and 2 deletions

View File

@ -119,7 +119,7 @@ If you believe you are a rights holder and would like to your works to be unglue
<dl>
<dt>I forgot my password. What do I do?</dt>
<dd>
Click on this <a href="{% url 'django.contrib.auth.views.password_reset' %}">forgot your password</a> link (you can also find it at the bottom of the <a href="{% url 'superlogin' %}">sign in page</a>). Enter the email address you use for your account and we'll send you an email to help you reset your password.
Click on this <a href="{% url 'password_reset' %}">forgot your password</a> link (you can also find it at the bottom of the <a href="{% url 'superlogin' %}">sign in page</a>). Enter the email address you use for your account and we'll send you an email to help you reset your password.
</dd>
<dt>I never received an activation email after I signed up, or my activation email isn't working. What do I do?</dt>

View File

@ -26,6 +26,7 @@ urlpatterns = [
# questionnaire urls
url(r'^survey/', include('regluit.questionnaire.urls')),
# sitemaps
url(r'^sitemap\.xml$', index, {'sitemaps': sitemaps}),
url(r'^sitemap\.xml$', index, {'sitemaps': sitemaps},
name='django.contrib.sitemaps.views.sitemap'),
url(r'^sitemap-(?P<section>.+)\.xml$', sitemap, {'sitemaps': sitemaps}),
]