2012-09-18 16:18:25 +02:00
|
|
|
{{! Client-side Mustache template for rendering subscriptions.}}
|
2012-12-12 07:09:25 +01:00
|
|
|
{{#each subscriptions}}
|
|
|
|
{{#with this}}
|
2012-09-18 16:18:25 +02:00
|
|
|
<tr>
|
2012-11-09 22:40:34 +01:00
|
|
|
<td>
|
2012-11-19 16:54:23 +01:00
|
|
|
<input class="colorpicker" type="text" value="{{color}}" />
|
|
|
|
<span class="subscription_name">{{subscription}}</span>
|
2012-09-18 16:18:25 +02:00
|
|
|
</td>
|
2012-11-09 22:40:34 +01:00
|
|
|
<td class="span2">
|
2012-11-16 20:11:08 +01:00
|
|
|
<button class="btn btn-block" type="button" name="subscription"
|
2012-12-12 20:04:08 +01:00
|
|
|
onclick="subs.unsubscribe_button_click(event);">Unsubscribe</button>
|
2012-09-21 20:34:00 +02:00
|
|
|
</td>
|
2012-09-18 16:18:25 +02:00
|
|
|
</tr>
|
2012-12-12 07:09:25 +01:00
|
|
|
{{/with}}
|
|
|
|
{{/each}}
|