Skip to content

Instantly share code, notes, and snippets.

@rustyrazorblade
Created March 28, 2012 17:53
Show Gist options
  • Save rustyrazorblade/2228707 to your computer and use it in GitHub Desktop.
Save rustyrazorblade/2228707 to your computer and use it in GitHub Desktop.
coffee
who_owes_me = '''
<table class='table table-condensed table-striped ' >
<tr class="titles">
<th class="name">Who Owes Me</th>
<th class="amount">Amount</th>
<th class="status">&nbsp;</th>
</tr>
{{#users}}
<tr>
<td class="name"><a href="#">{{name}}</a></td>
<td class="amount">${{amount}}</td>
<td class="status">
<span>
<a href="#" class = "debtor_paid" data-userid="{{userid}}" data-amount="{{amount}}" data-facebookid="{{facebookid}}" id = "debtor_{{userid}}_{{amount}}"> <i class='icon-check'></i></a>
</span>
</td>
</tr>
{{/users}}
{{^users}}
<tr><td colspan=2 align="left">Nobody owes you</td></tr>
{{/users}}
</table>
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment