Django Sessions Loose Data with url containing target="_blank"

In my django app, I store the current breadcrumb data (an array) in the session object. When I have a link that includes target="_blank", the session data is lost.

  1. I assume this is normal operation, but just want to check that this is true.
  2. Any suggestions on where to store the breadcrumb array if I need to retrieve it when I use target="_blank" in my urls as well as whenever a page loads? Keep in mind, the breadcrumb data is on a per user basis.

Thanks!

Back to Top