117 | {{#if this.showTags}}
118 |
119 | {{#each this.tags as |tag|}}
120 | {{htmlSafe tag}}
121 | {{/each}}
122 |
123 | {{/if}}
124 |
125 |
126 |
127 | {{#if this.showCategory}}
128 |
129 | {{categoryBadge @topic.category}}
130 |
131 | {{/if}}
132 |
133 | {{#unless this.showDetailed}}
134 |
135 | {{#if @topic.assigned_to_user.username}}
136 | {{! template-lint-disable no-nested-interactive }}
137 |
142 | {{/if}}
143 |
144 | {{#if @topic.indirectly_assigned_to}}
145 | {{#each-in
146 | @topic.indirectly_assigned_to
147 | as |target_id assignment|
148 | }}
149 |
150 | {{! template-lint-disable no-nested-interactive }}
151 |
156 | {{/each-in}}
157 | {{/if}}
158 |
159 | {{/unless}}
160 |
161 |
162 | {{#if this.showDetailed}}
163 |
164 |
165 | {{formatDate @topic.bumpedAt format="tiny" noTitle="true"}}
166 | ({{this.lastPoster.user.username}})
167 |
168 |
169 |
170 | {{#if @topic.assigned_to_user.username}}
171 | {{htmlSafe
172 | (renderAvatar
173 | @topic.assigned_to_user
174 | avatarTemplatePath="avatar_template"
175 | usernamePath="username"
176 | namePath="name"
177 | imageSize="tiny"
178 | )
179 | }}
180 | {{/if}}
181 |
182 | {{#if @topic.indirectly_assigned_to}}
183 | {{#each-in
184 | @topic.indirectly_assigned_to
185 | as |target_id assignment|
186 | }}
187 |
188 | {{htmlSafe
189 | (renderAvatar
190 | assignment.assigned_to
191 | avatarTemplatePath="avatar_template"
192 | usernamePath="username"
193 | namePath="name"
194 | imageSize="tiny"
195 | )
196 | }}
197 | {{/each-in}}
198 | {{/if}}
199 |
200 |
201 | {{/if}}
202 |
203 | {{#if this.showImage}}
204 |