How to model reverse 1:N relation

I’m need to model following requirement:

There are two entities - User and Device. Device can be assigned to several User instances. This is done in one screen and I know how to do it. But I need to create another screen, where parent screen section contains User entity and child screen section contains list of Device instances assigned the selected User instance. The list has to contain all fields from Device.

How can I achieve it?

You just have to add a new Relationship to the User entity pointing to the Device entity. Then you can model data structures having User -> Device.