mirror of https://github.com/zulip/zulip.git
30 lines
1006 B
HTML
30 lines
1006 B
HTML
{% load jstemplate %}
|
|
|
|
{% icanhazjs "subscription" %}
|
|
|
|
<h1>Current subscriptions</h1>
|
|
<div class="row-fluid">
|
|
<div id="current_subscriptions" class="span12">
|
|
<form action="/subscriptions/manage/" method="post" class="subscriptions">{% csrf_token %}
|
|
<table id="current_subscriptions_table">
|
|
<tr>
|
|
<th>Unsubscribe?</th>
|
|
<th>Class</th>
|
|
</tr>
|
|
</table>
|
|
<input type="submit" name="change_subscriptions" value="Change subscriptions" class="btn" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<h1>Add new subscriptions</h1>
|
|
<div class="row-fluid">
|
|
<div id="add_new_subscriptions" class="span12">
|
|
<form action="/subscriptions/add/" method="post" class="subscriptions">{% csrf_token %}
|
|
<label>Please enter a comma-separated list of classes</label>
|
|
<input type="text" name="new_subscriptions" id="new_subscriptions" value="" /><br />
|
|
<input type="submit" name="add_subscriptions" value="Add subscriptions" class="btn" />
|
|
</form>
|
|
</div>
|
|
</div>
|