2012-10-16 06:03:29 +02:00
|
|
|
{# Subscriptions management tab of the app. #}
|
|
|
|
|
2012-10-29 22:36:45 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="span6">
|
2012-10-04 22:59:18 +02:00
|
|
|
<div class="subscriptions">
|
|
|
|
<h1>Subscriptions</h1>
|
2013-01-10 19:32:57 +01:00
|
|
|
<form id="add_new_subscription" class="form-inline">{% csrf_token %}
|
2012-10-31 23:10:18 +01:00
|
|
|
<input type="text" name="streams" id="streams"
|
2012-10-29 22:36:45 +01:00
|
|
|
placeholder="Stream name" value="" class="span4" />
|
2012-10-04 22:59:18 +02:00
|
|
|
<input type="submit" name="add_subscription" value="Subscribe" class="btn btn-primary" />
|
|
|
|
</form>
|
|
|
|
<div class="alert" id="subscriptions-status"></div>
|
2013-01-16 21:26:55 +01:00
|
|
|
<div id="subs_page_loading_indicator"></div>
|
2012-10-25 06:09:28 +02:00
|
|
|
<form id="current_subscriptions" action="/json/subscriptions/remove"
|
|
|
|
method="post" class="subscriptions">{% csrf_token %}
|
2012-10-29 22:36:45 +01:00
|
|
|
<table class="table table-condensed table-striped">
|
|
|
|
<tbody id="subscriptions_table"></tbody>
|
2012-10-04 22:59:18 +02:00
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-08-30 20:00:04 +02:00
|
|
|
</div>
|