I´m working on a course exercise and I\'m stuck for a few hours and I\'m not sure what is causing the app to break, next, you will find the files involved and perhaps you ca
You've set a namespace for your urls:
app_name = 'account'
You need to use that namespace when reversing urls with reverse/reverse_lazy or {% url %}:
reverse
reverse_lazy
{% url %}
LOGIN_REDIRECT_URL = reverse_lazy('account:dashboard') LOGIN_URL = reverse_lazy('account:login') LOGOUT_REDIRECT_URL = reverse_lazy('account:logout')