mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
I didn't rename all the files and HTML elements in case we decide we like the old name better. (imported from commit d8a8d30662e22e69e60df9cd2b1341a9128a1902)
26 lines
935 B
HTML
26 lines
935 B
HTML
{# Subscriptions management tab of the app. #}
|
|
|
|
<div class="row">
|
|
<div class="span6">
|
|
<div class="subscriptions">
|
|
<h1>Streams</h1>
|
|
<div class="alert" id="subscriptions-status"></div>
|
|
<div id="subs_page_loading_indicator"></div>
|
|
<table class="table table-condensed table-striped">
|
|
<tbody id="subscriptions_table">
|
|
<tr id="create_stream_row"><td>
|
|
<div class="subscription_table_elem">
|
|
<form id="add_new_subscription" class="form-inline">
|
|
<input type="text" name="stream_name" id="create_stream_name"
|
|
placeholder="Stream name" value="" class="span3" />
|
|
<input type="submit" class="btn btn-primary"
|
|
id="create_stream_button" value="Create stream" />
|
|
</form>
|
|
</div>
|
|
</td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|