2021-06-26 15:28:24 +02:00
|
|
|
<div class="stream_settings_header" data-stream-id="{{sub.stream_id}}">
|
|
|
|
<div class="tab-container"></div>
|
|
|
|
{{#with sub}}
|
|
|
|
<div class="button-group">
|
|
|
|
<div class="sub_unsub_button_wrapper inline-block">
|
|
|
|
<button class="button small rounded subscribe-button sub_unsub_button {{#unless subscribed }}unsubscribed{{/unless}}" type="button" name="button" {{#if should_display_subscription_button}}title="{{t 'Toggle subscription'}} (S)" {{else}}disabled="disabled"{{/if}}>
|
|
|
|
{{#if subscribed }}{{#tr}}Unsubscribe{{/tr}}{{else}}{{#tr}}Subscribe{{/tr}}{{/if}}</button>
|
|
|
|
</div>
|
|
|
|
<a href="{{preview_url}}" class="button small rounded" id="preview-stream-button" role="button" title="{{t 'View stream'}} (V)" {{#unless should_display_preview_button }}style="display: none"{{/unless}}><i class="fa fa-eye"></i></a>
|
|
|
|
{{#if is_realm_admin}}
|
|
|
|
<button class="button small rounded btn-danger deactivate" type="button" name="delete_button" title="{{t 'Archive stream'}}"> <i class="fa fa-trash-o" aria-hidden="true"></i></button>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{/with}}
|
|
|
|
</div>
|
2019-06-14 14:42:48 +02:00
|
|
|
<div class="subscription_settings" data-stream-id="{{sub.stream_id}}">
|
2017-04-15 04:20:32 +02:00
|
|
|
<div class="inner-box">
|
2020-05-24 14:24:23 +02:00
|
|
|
|
2021-06-26 15:28:24 +02:00
|
|
|
<div class="general_settings stream_section">
|
2021-07-01 11:34:18 +02:00
|
|
|
{{#with sub}}
|
|
|
|
<div class="stream-header">
|
|
|
|
{{> subscription_privacy
|
|
|
|
invite_only=invite_only
|
|
|
|
is_web_public=is_web_public }}
|
|
|
|
<div class="stream-name">
|
|
|
|
<span class="sub-stream-name" title="{{name}}">{{name}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="stream_change_property_info alert-notification"></div>
|
|
|
|
<div class="button-group">
|
|
|
|
<button id="open_stream_info_modal" class="button rounded small btn-warning" title="{{t 'Change stream info' }}">
|
|
|
|
<i class="fa fa-pencil" aria-hidden="true"></i>
|
|
|
|
</button>
|
2019-05-06 14:35:57 +02:00
|
|
|
</div>
|
2017-12-13 21:37:40 +01:00
|
|
|
</div>
|
2021-07-01 11:34:18 +02:00
|
|
|
<div class="stream-description">
|
2021-07-08 23:21:47 +02:00
|
|
|
{{> stream_description
|
|
|
|
rendered_description=rendered_description
|
|
|
|
}}
|
2021-07-01 11:34:18 +02:00
|
|
|
</div>
|
|
|
|
<div class="subscription-type">
|
|
|
|
<div class="subscription-type-text">
|
|
|
|
{{> subscription_type
|
|
|
|
stream_post_policy_values=../stream_post_policy_values
|
|
|
|
message_retention_text=../message_retention_text}}
|
|
|
|
</div>
|
|
|
|
<a class="change-stream-privacy" {{#unless can_change_stream_permissions}}style="display: none;"{{/unless}}>[{{t "Change" }}]</a>
|
2017-04-15 04:20:32 +02:00
|
|
|
</div>
|
2021-07-01 11:34:18 +02:00
|
|
|
{{/with}}
|
2021-07-04 19:39:24 +02:00
|
|
|
<div class="stream-email-box" {{#unless sub.email_address}}style="display: none;"{{/unless}}>
|
|
|
|
<label class="sub_settings_title">
|
|
|
|
{{t "Email address" }}
|
|
|
|
{{> help_link_widget link="/help/message-a-stream-by-email" }}
|
|
|
|
</label>
|
|
|
|
<div class="stream-email">
|
|
|
|
<span class="email-address">{{sub.email_address}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-06 12:29:55 +01:00
|
|
|
</div>
|
2020-05-24 14:24:23 +02:00
|
|
|
|
2021-06-26 15:28:24 +02:00
|
|
|
<div class="personal_settings stream_section collapse {{#sub.subscribed}}in{{/sub.subscribed}}">
|
2020-05-24 14:24:23 +02:00
|
|
|
<div id="personal_settings_label_container">
|
|
|
|
<label class="sub_settings_title inline-block">
|
|
|
|
{{t "Personal settings" }}
|
|
|
|
</label>
|
|
|
|
<div id="stream_change_property_status{{sub.stream_id}}" class="alert-notification"></div>
|
|
|
|
</div>
|
2017-04-15 04:20:32 +02:00
|
|
|
<div class="subscription-config">
|
2017-08-08 19:13:05 +02:00
|
|
|
<ul class="grey-box">
|
2019-06-14 14:42:48 +02:00
|
|
|
{{#each settings}}
|
2017-04-15 04:20:32 +02:00
|
|
|
<li>
|
2019-07-11 04:05:28 +02:00
|
|
|
{{> stream_settings_checkbox
|
|
|
|
setting_name=name
|
2020-01-27 18:42:35 +01:00
|
|
|
is_checked=is_checked
|
2019-07-11 04:05:28 +02:00
|
|
|
is_muted=(lookup ../sub "is_muted")
|
|
|
|
stream_id=(lookup ../sub "stream_id")
|
|
|
|
notification_setting=is_notification_setting
|
2020-01-27 18:54:44 +01:00
|
|
|
disabled_realm_setting=disabled_realm_setting
|
2020-01-27 18:50:49 +01:00
|
|
|
is_disabled=is_disabled
|
2019-07-11 04:05:28 +02:00
|
|
|
label=label}}
|
2017-04-15 04:20:32 +02:00
|
|
|
</li>
|
2019-06-14 14:42:48 +02:00
|
|
|
{{/each}}
|
2017-04-15 04:20:32 +02:00
|
|
|
<li>
|
|
|
|
<label for="streamcolor" class="subscription-control-label">{{t "Stream color" }}</label>
|
|
|
|
<span class="sub_setting_control">
|
2019-06-14 14:42:48 +02:00
|
|
|
<input stream_id="{{sub.stream_id}}" class="colorpicker" id="streamcolor" type="text" value="{{sub.color}}" tabindex="-1" />
|
2017-04-15 04:20:32 +02:00
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2020-05-16 17:53:50 +02:00
|
|
|
</div>
|
2021-07-01 11:34:18 +02:00
|
|
|
|
2021-06-26 15:28:24 +02:00
|
|
|
<div class="subscriber_settings stream_section">
|
2021-07-01 11:34:18 +02:00
|
|
|
{{#with sub}}
|
|
|
|
<div class="subscription-members-setting">
|
|
|
|
{{> subscription_members}}
|
|
|
|
</div>
|
|
|
|
{{/with}}
|
2016-10-28 06:52:17 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|