login templates names spelling fix (#6828)

This commit is contained in:
Serghei Mihai 2015-03-25 16:39:26 +01:00
parent 896114e1e1
commit c1bcb3b68a
4 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{% extends "uauth/login_successfull.html" %}
{% extends "uauth/login_successful.html" %}
{% load i18n %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "uauth/login_successfull.html" %}
{% extends "uauth/login_successful.html" %}
{% load i18n %}
{% block content %}

View File

@ -57,7 +57,7 @@ class LoginView(MellonLoginView):
'password': password
}
})
return render_to_response('uauth/%s_login_successfull.html' % organization.hotspot_type,
return render_to_response('uauth/%s_login_successful.html' % organization.hotspot_type,
context)
return render_to_response('uauth/login_failed.html', context)