Skip to content

Instantly share code, notes, and snippets.

@vincentbello
Created October 10, 2016 00:03
Show Gist options
  • Save vincentbello/a33d269e92978a3a0ec7c09757c88950 to your computer and use it in GitHub Desktop.
Save vincentbello/a33d269e92978a3a0ec7c09757c88950 to your computer and use it in GitHub Desktop.
templates/product-list.hbs
{{#each model as |product|}}
{{#if product.taskInstance.isRunning}}
Loading data for {{product.name}}...
{{else if product.taskInstance.error}}
An error occurred: {{product.taskInstance.error}}
{{else if product.taskInstance.value}}
{{product-panel data=product.taskInstance.value}}
{{/if}}
{{/each}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment