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}}">
|
2024-07-10 13:25:40 +02:00
|
|
|
<td class="user-topic-stream">{{stream}}</td>
|
|
|
|
<td class="white-space-preserve-wrap user-topic">{{topic}}</td>
|
2023-04-14 18:13:13 +02:00
|
|
|
<td>
|
2024-05-28 16:02:50 +02:00
|
|
|
<select class="settings_user_topic_visibility_policy list_select bootstrap-focus-style" data-setting-widget-type="number">
|
2023-04-14 18:13:13 +02:00
|
|
|
{{#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}}
|