Taking it further
That’s as far as the quota system will take you, so (depending on the skin you are using) you may need to customise your skin templates to suit your concept of a record label.
The most obvious requirement is going to be a list of Artists on the Record Label which you probably want on the main page of the Record Label’s profile.
This will list a power users profiles on their profile
{jrCore_list module="jrProfile" search1="_user_id = {$_user_id}" }
Add _quota_id if needed.
In the jrProfile item_list.tpl item templates (the profile IS the item) {$_user_id} will be the user id of the Record Label, so search1 is finding all of the profiles created by this user.
search1 is saying "get all of the profiles created by the label user"
Now, if you look at the results, you will see that as well as all the Artists on the label, the list shows the Label profile itself - we don’t want that, we only want a list of the artists on the label, so we can add a second search parameter:
search2="_profile_id != {$_profile_id}"
search2 is saying "but dont include the profile we are currently looking at" so it excludes the Record Label profile itself.
The full list call now looks like this: