소스 검색

Fix reverse urls namespacing issue

tags/v1.0.0
Krzysztof Klimonda 11 년 전
부모
커밋
83f14445bf
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      pinry/users/views.py

+ 2
- 2
pinry/users/views.py 파일 보기

@@ -19,7 +19,7 @@ class CreateUser(CreateView):
template_name = 'user/register.html'
model = User
form_class = UserCreationForm
success_url = reverse_lazy('pins:recent-pins')
success_url = reverse_lazy('core:recent-pins')

def get(self, request, *args, **kwargs):
if not settings.ALLOW_NEW_REGISTRATIONS:
@@ -41,4 +41,4 @@ class CreateUser(CreateView):
def logout_user(request):
logout(request)
messages.success(request, 'You have successfully logged out.')
return HttpResponseRedirect(reverse('core:home'))
return HttpResponseRedirect(reverse('core:recent-pins'))

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