소스 검색

Fix auth redirect

master
tr4ck3ur des JM2L 9 년 전
부모
커밋
d393d09715
3개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. +1
    -1
      jm2l/auth.py
  2. +2
    -2
      jm2l/templates/list_tiers.mako
  3. +1
    -1
      jm2l/views.py

+ 1
- 1
jm2l/auth.py 파일 보기

@@ -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
jm2l/templates/list_tiers.mako 파일 보기

@@ -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
jm2l/views.py 파일 보기

@@ -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):


불러오는 중...
취소
저장