Hi,
I’m in the process of customising the information on our groups index page with a theme component. I’d like to add the user bio of each member. I found the template to override and am able to make changes this way. However, it eludes me how to access the biography data from the user_profiles table.
What I have so far:
<tbody>
{{#each model.members as |m|}}
<tr>
<td class='avatar'>
{{user-info user=m skipName=skipName}}
</td>
<td>
<span class="text">{{m.bio_excerpt}}</span>
</td>
I also tried {m.user_profile.bio_excerpt}
but in both cases I don’t get any data. Is this information available in a theme component, and if so, how should I access it?
Thanks!