Fix auth redirect

This commit is contained in:
2015-04-06 19:10:56 +02:00
parent 64556ecf47
commit d393d09715
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ def sign_in_out(request):
request.session.flash(('error',u'Vous avez entré un mauvais couple identifiant/password !'))
return HTTPFound(location="/sign/login",
headers=headers)
return HTTPFound(location=request.route_url('home'),
return HTTPFound(location=request.route_url('home', year=''),
headers=headers)
+2 -2
View File
@@ -37,11 +37,11 @@
<td style="position: relative;">
${Entity_Type}, ${entity.get_entity_type.entity_subtype}<br>
<strong>
<a href="/entity/${entity.get_entity_type.entity_type}/${entity.slug}">${entity.name}</a>
<a href="/entity/${entity.get_entity_type.slug_entity_type}/${entity.slug}">${entity.name}</a>
</strong>
% if request.user and request.user.Staff:
<span style="float:right;">
<a href="/entity/${entity.get_entity_type.entity_type}/${entity.slug}/edit">edit</a>
<a href="/entity/${entity.get_entity_type.slug_entity_type}/${entity.slug}/edit">edit</a>
</span>
% endif
</td>
+1 -1
View File
@@ -887,7 +887,7 @@ def change_year(request):
if year>-1:
session['year'] = year
return HTTPFound(location='/%s/' % year)
return HTTPFound(location=request.route_url('home'))
return HTTPFound(location=request.route_url('home', year=''))
@view_config(route_name='pict_user', renderer="jm2l:templates/Profil/pict_user.mako")
def pict_user(request):