diff --git a/app/views/explore.scala.html b/app/views/explore.scala.html
index 09454eb15b..aaee56a991 100644
--- a/app/views/explore.scala.html
+++ b/app/views/explore.scala.html
@@ -10,7 +10,11 @@
@cityName = @{cityNameShort.getOrElse(Messages(s"city.name.$cityId"))}
@main(title, Some("/explore")) {
- @navbar(user, Some("/explore"))
+ @if(userRoute.isDefined) {
+ @navbar(user, Some(s"/explore?routeId=${userRoute.get.routeId}&resumeRoute=true"))
+ } else {
+ @navbar(user, Some("/explore"))
+ }