2023-04-12 16:26:22 +02:00
|
|
|
{{#with user_topic}}
|
2023-04-14 18:13:13 +02:00
|
|
|
<tr data-stream-id="{{stream_id}}" data-stream="{{stream}}" data-topic="{{topic}}" data-date-updated="{{date_updated_str}}" data-visibility-policy="{{visibility_policy}}">
|
2017-03-06 18:17:11 +01:00
|
|
|
<td>{{stream}}</td>
|
|
|
|
<td>{{topic}}</td>
|
2023-04-14 18:13:13 +02:00
|
|
|
<td>
|
|
|
|
<select class="settings_user_topic_visibility_policy prop-element list_select bootstrap-focus-style" data-setting-widget-type="number">
|
|
|
|
{{#each ../user_topic_visibility_policy_values}}
|
2023-08-21 08:10:03 +02:00
|
|
|
<option value='{{this.code}}' {{#if (eq this.code ../visibility_policy)}}selected{{/if}}>{{this.description}}</option>
|
2023-04-14 18:13:13 +02:00
|
|
|
{{/each}}
|
|
|
|
</select>
|
2020-02-05 13:14:24 +01:00
|
|
|
</td>
|
2023-04-14 18:13:13 +02:00
|
|
|
<td class="topic_date_updated">{{date_updated_str}}</td>
|
2016-11-26 04:39:53 +01:00
|
|
|
</tr>
|
2020-02-05 13:14:24 +01:00
|
|
|
{{/with}}
|