mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
To be fully responsive, we can basically never specify the width of our container in a fixed number of pixels; otherwise we'll run into the situation where there's an inordinate amount of wasted space on our left and right. So everything needs to change from, e.g. row to row-fluid, and that has a whole cascading series of changes that that implies. (imported from commit 7e2771d916f429548c65c0a00fc4c11397054656)
28 lines
980 B
HTML
28 lines
980 B
HTML
{# Subscriptions management tab of the app. #}
|
|
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<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="" />
|
|
<input type="submit" class="btn btn-primary"
|
|
id="create_stream_button" value="Create stream" />
|
|
</form>
|
|
</div>
|
|
</td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include "zephyr/stream_creation_prompt.html" %}
|