Skip to content

Commit

Permalink
Fix incorrect URL path
Browse files Browse the repository at this point in the history
  • Loading branch information
anorthall committed Jan 4, 2024
1 parent 7033847 commit 57e1137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/maps/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def get(self, request, *args, **kwargs):

if not user.trips.exists():
messages.info(self.request, "You don't have any trips yet.")
return redirect("logger:add_trip")
return redirect("log:trip_create")

selected_trip = (
user.trips.filter(Q(cave_coordinates__isnull=True) | Q(cave_location=""))
Expand Down

0 comments on commit 57e1137

Please sign in to comment.