Parcourir la source

Use the correct reverse argument

tags/v1.0.0
Krzysztof Klimonda il y a 11 ans
Parent
révision
97732c4f45
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      pinry/users/views.py

+ 1
- 1
pinry/users/views.py Voir le fichier

@@ -24,7 +24,7 @@ class CreateUser(CreateView):
def get(self, request, *args, **kwargs):
if not settings.ALLOW_NEW_REGISTRATIONS:
messages.error(request, "The admin of this service is not allowing new registrations.")
return HttpResponseRedirect(reverse('pins:recent-pins'))
return HttpResponseRedirect(reverse('core:recent-pins'))
return super(CreateUser, self).get(request, *args, **kwargs)

def form_valid(self, form):


Chargement…
Annuler
Enregistrer