You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bro, just give you what I did which solved my problem. I wrote {% block body%} in all my html file, and the inherence works good until I wanna set "password_reset" function. The I changed the {% block body %} to {% block content %}, then the bug which html went a blank page just solved. I think you should add a {% block title %} {% endblock %} in your signin html, and check the key words like " content " " title" in the html inherence. I think the package would only recognize those "key words" defined by Django, so if you wanna a customize it, it may probably not work.
Hi,
I think I implemented the library correctly:
settings.py:
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'app10minmentors',
'password_reset',
]
urls.py:
url(r'^password_reset/',include('password_reset.urls',namespace="password_reset")),
signin.html
{% block content %}
{% csrf_token %}
Sign In
Sign in »
{% endblock content %}
but when I click on 'Forgot Password' I can see a blank screen... Any Idea? Thanks in advance
The text was updated successfully, but these errors were encountered: