In the Ember guide, the partial seem to magically get author's firstname and lastname attributes.
But it is failing for my try, see my jsbin where I have two models: Organization (with "name" and "description") and Member (with "name"). Organizations is displayed successfully, but I'm failing to display the Members.
<script type="text/x-handlebars" id="organization">
...
{{ partial "member" }}
</script>
<script type="text/x-handlebars" id="_member">
Here are the Members:
<ul>
{{#each member}}
<li>{{member.name}}</li>
{{/each}}
</ul>
</script>