Skip to content

Instantly share code, notes, and snippets.

@kriskhaira
Created October 10, 2012 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kriskhaira/3863012 to your computer and use it in GitHub Desktop.
Save kriskhaira/3863012 to your computer and use it in GitHub Desktop.
JADE for Ember view 1
script(type="text/x-handlebars")
{{#view Cashier.transactionRowView}}
table
tbody
{{#each Cashier.transactionsController}}
<tr>
<td>{{datetime}}</td>
<td>{{userId}}</td>
<td>{{amount}}</td>
<td>{{console.datetime}}</td>
<td>{{console.userId}}</td>
<td>{{console.amount}}</td>
</tr>
{{/each}}
{{/view}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment