Shared dashboard view between tablet and phone

Hi guys,
I use sections to make my dashboards for tablet and phone.

I need different main dashboards for my phone and different one for my tablet. That said I have room views on my tablet that happen to work great on my phone as well. That brings me to idea of sharing dashboard views between two devices. It’s easy to navigate from phone’s main dashboard to tablet room view that works great on both but how do I get back? I have Browser Mod set up.

Is there any easy mechanism to condition navigate function to get back to original device? I guess I could set up toggle helpers and then setup using YAML perhaps or just copy YAML code quickly to create duplicate dashboards views.

But I guess there is a better way or maybe function I don’t know about. I am pretty new to Homeassistant so I am discovering new thongs every hour.

How would you set it up?

Thank, Charles

You have one HA server for a tablet & phone, right?
Your options are:

  1. Create dashboards/views which can be both used in tablet & phone (google “adaptive web design”).
  2. Use conditional cards: complex ones are shown on a tablet, simple ones - on a mobile. Use a mediaquery-based conditions.
  3. Create separate views - complex for a tablet, simple for a mobile. Create 2 user accounts - “tablet” & “mobile”. Enable complex views for the “tablet” user, simple vies - for the “mobile” user. Use these accounts for both devices correspondingly.

That was actually helpful Ildar. Thank you.