Is there a short hand way to loop over all the property keys, values and types in a model instance in ember js handlebars template.
For example wanting to do something like this in the template:
<ul>
{{#each key, value, type in model}}
<li> <span class="label label-info">{{key}}</span>: {{value}} is a {{type}} </li>
{{/each}}
</ul>
Maybe this is just not possible with handlebars?