2012-09-18 16:18:25 +02:00
|
|
|
{% load jstemplate %}
|
|
|
|
|
|
|
|
{% icanhazjs "subscription" %}
|
2012-09-07 17:35:00 +02:00
|
|
|
|
2012-08-30 18:04:35 +02:00
|
|
|
<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">
|
2012-08-31 22:48:34 +02:00
|
|
|
<tr>
|
|
|
|
<th>Unsubscribe?</th>
|
|
|
|
<th>Class</th>
|
|
|
|
</tr>
|
2012-08-30 18:04:35 +02:00
|
|
|
</table>
|
|
|
|
<input type="submit" name="change_subscriptions" value="Change subscriptions" class="btn" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2012-08-30 20:00:04 +02:00
|
|
|
<h1>Add new subscriptions</h1>
|
|
|
|
<div class="row-fluid">
|
2012-09-18 17:45:03 +02:00
|
|
|
<div id="add_new_subscriptions" class="span12">
|
2012-08-30 20:00:04 +02:00
|
|
|
<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>
|