diff --git a/app/assets/javascripts/discourse/app/components/search-result-entry.hbs b/app/assets/javascripts/discourse/app/components/search-result-entry.hbs index 735d72f6541..af53b82109d 100644 --- a/app/assets/javascripts/discourse/app/components/search-result-entry.hbs +++ b/app/assets/javascripts/discourse/app/components/search-result-entry.hbs @@ -1,11 +1,18 @@ -
- - {{avatar this.post imageSize="large"}} - -
+ +
+ + {{avatar this.post imageSize="large"}} + +
+ +
+ {{#if this.bulkSelectEnabled}}
-
- - {{format-date this.post.created_at format="tiny"}} - {{#if this.post.blurb}} - - - {{/if}} - - - {{#if this.post.blurb}} - {{#if this.siteSettings.use_pg_headlines_for_excerpt}} - {{html-safe this.post.blurb}} - {{else}} - - {{html-safe this.post.blurb}} - - {{/if}} - {{/if}} -
- - {{#if this.showLikeCount}} - {{#if this.post.like_count}} - - {{this.post.like_count}} - {{d-icon "heart"}} + +
+ + {{format-date this.post.created_at format="tiny"}} + {{#if this.post.blurb}} + - + {{/if}} + + {{#if this.post.blurb}} + {{#if this.siteSettings.use_pg_headlines_for_excerpt}} + {{html-safe this.post.blurb}} + {{else}} + + {{html-safe this.post.blurb}} + + {{/if}} + {{/if}} +
+
+ + + {{#if this.showLikeCount}} + {{#if this.post.like_count}} + + {{/if}} {{/if}} - {{/if}} +
\ No newline at end of file diff --git a/app/assets/javascripts/discourse/app/templates/user/activity.hbs b/app/assets/javascripts/discourse/app/templates/user/activity.hbs index dcb66a54e34..ae2375d1643 100644 --- a/app/assets/javascripts/discourse/app/templates/user/activity.hbs +++ b/app/assets/javascripts/discourse/app/templates/user/activity.hbs @@ -1,95 +1,95 @@ {{body-class "user-activity-page"}} - -
- - - {{d-icon "bars-staggered"}} - {{i18n "user.filters.all"}} - - - - {{d-icon "list-ul"}} - {{i18n "user_action_groups.4"}} - - - {{d-icon "reply"}} - {{i18n "user_action_groups.5"}} - - - {{#if this.user.showRead}} + +
+ - {{d-icon "clock-rotate-left"}} - {{i18n "user.read"}} + {{d-icon "bars-staggered"}} + {{i18n "user.filters.all"}} - {{/if}} - {{#if this.user.showDrafts}} - {{d-icon "pencil"}} - {{this.draftLabel}} + {{d-icon "list-ul"}} + {{i18n "user_action_groups.4"}} - {{/if}} - - {{#if (gt this.model.pending_posts_count 0)}} - {{d-icon "clock"}} - {{this.pendingLabel}} + {{d-icon "reply"}} + {{i18n "user_action_groups.5"}} - {{/if}} - - {{d-icon "heart"}} - {{i18n "user_action_groups.1"}} - + {{#if this.user.showRead}} + + {{d-icon "clock-rotate-left"}} + {{i18n "user.read"}} + + {{/if}} + + {{#if this.user.showDrafts}} + + {{d-icon "pencil"}} + {{this.draftLabel}} + + {{/if}} + + {{#if (gt this.model.pending_posts_count 0)}} + + {{d-icon "clock"}} + {{this.pendingLabel}} + + {{/if}} - {{#if this.user.showBookmarks}} - {{d-icon "bookmark"}} - {{i18n "user_action_groups.3"}} + {{d-icon "heart"}} + {{i18n "user_action_groups.1"}} - {{/if}} - - -
+ {{#if this.user.showBookmarks}} + + {{d-icon "bookmark"}} + {{i18n "user_action_groups.3"}} + + {{/if}} + +
+
+
{{outlet}}
\ No newline at end of file