Skip to content

Commit 45a06f5

Browse files
frjowes-otf
authored andcommitted
Replace one use of reverse_lazy with reverse.
1 parent aec9ddf commit 45a06f5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hypha/apply/funds/views/all.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from django.db import models
1212
from django.http import HttpRequest, HttpResponse, HttpResponseForbidden
1313
from django.shortcuts import redirect, render
14-
from django.urls import reverse, reverse_lazy
14+
from django.urls import reverse
1515
from django.utils.translation import gettext as _
1616
from django.views.decorators.http import require_http_methods
1717
from django_htmx.http import HttpResponseClientRedirect, HttpResponseClientRefresh
@@ -486,7 +486,7 @@ def bulk_update_submissions_status(request: HttpRequest) -> HttpResponse:
486486
return HttpResponseClientRefresh()
487487
action = outcome_from_actions(transitions)
488488
return HttpResponseClientRedirect(
489-
reverse_lazy("apply:submissions:determinations:batch")
489+
reverse("apply:submissions:determinations:batch")
490490
+ "?action="
491491
+ action
492492
+ "&submissions="

0 commit comments

Comments
 (0)