Skip to content

Commit

Permalink
[chores] Fixed allauth template heirarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
pandafy committed Aug 21, 2024
1 parent 9cfdf85 commit 291839d
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "admin/base_site.html" %}
{% extends "account/base_entrance.html" %}

{% load i18n %}
{% load account %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "account/base.html" %}
{% extends "account/base_entrance.html" %}
{% load i18n %}

{% block extrastyle %}
Expand Down
2 changes: 1 addition & 1 deletion openwisp_users/accounts/templates/account/login.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "account/base.html" %}
{% extends "account/base_entrance.html" %}

{% load i18n %}
{% block head_title %}{% trans "Sign In" %}{% endblock %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "account/base.html" %}
{% extends "account/base_manage.html" %}
{% load i18n %}

{% block extrastyle %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "account/base.html" %}
{% extends "account/base_manage.html" %}

{% load i18n %}
{% load static %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "account/base.html" %}
{% extends "account/base_manage.html" %}
{% load i18n %}

{% block extrastyle %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "account/base.html" %}
{% extends "account/base_manage.html" %}
{% load i18n %}

{% block extrastyle %}
Expand Down
2 changes: 1 addition & 1 deletion openwisp_users/password_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ def validate(self, password, user=None):
)

def get_help_text(self):
return ''
return _('Your password cannot be the same as your current password.')

0 comments on commit 291839d

Please sign in to comment.