Blame view

mustache/app/views/pages/partials/widgets/members.mustache 522 Bytes
5a739853   patrick.he   commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  {{#page.members}}
   <tr>
  	<td class="">{{name}}</td>
  	<td>
  		<a href="#">{{email}}</a>
  	</td>
  	<td class="hidden-480">
  	{{#pending}}
  	<span class="label label-warning">Pending</span>
  	{{/pending}}
  	{{#approved}}
  	<span class="label label-success arrowed-in arrowed-in-right">Approved</span>
  	{{/approved}}
  	{{#blocked}}
  	<span class="label label-inverse arrowed">Blocked</span>
  	{{/blocked}}
  	{{#online}}
  	<span class="label label-info arrowed-in arrowed-in-right">Online</span>
  	{{/online}}
  	</td>
   </tr>
  {{/page.members}}