- Add a new base_plain template as parernt for the authentication templates. Signed-off-by: Eric Riggs <ericriggs42@gmail.com>
20 lines
517 B
Python
20 lines
517 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from navigation import Link
|
|
|
|
|
|
def has_usable_password(context):
|
|
return context['request'].user.has_usable_password
|
|
|
|
|
|
link_logout = Link(
|
|
html_extra_classes='non-ajax', icon='fa fa-sign-out-alt',
|
|
text=_('Logout'), view='authentication:logout_view'
|
|
)
|
|
link_password_change = Link(
|
|
condition=has_usable_password, icon='fa fa-key', text=_('Change password'),
|
|
view='authentication:password_change_view'
|
|
)
|