mirror of https://github.com/zulip/zulip.git
16 lines
452 B
HTML
16 lines
452 B
HTML
{{! Client-side Mustache template for rendering subscriptions.}}
|
|
{{#each subscriptions}}
|
|
{{#with this}}
|
|
<tr>
|
|
<td>
|
|
<input class="colorpicker" type="text" value="{{color}}" />
|
|
<span class="subscription_name">{{subscription}}</span>
|
|
</td>
|
|
<td class="span2">
|
|
<button class="btn btn-block" type="button" name="subscription"
|
|
onclick="subs.unsubscribe_button_click(event);">Unsubscribe</button>
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|
|
{{/each}}
|