diff --git a/kitsune/questions/templates/questions/includes/answer.html b/kitsune/questions/templates/questions/includes/answer.html index cb6161ac6d1..9b8d1c9912b 100644 --- a/kitsune/questions/templates/questions/includes/answer.html +++ b/kitsune/questions/templates/questions/includes/answer.html @@ -31,6 +31,8 @@

{{_('Chosen Solution')}}

{% elif answer.id and answer in helpful_replies %}

{{_('Helpful Reply')}}

+ {% elif answer.is_spam %} +

{{ _('Marked as spam') }}

{% elif answer.id and answer.creator == question.creator %}

{{_('Question owner')}}

{% endif %} diff --git a/kitsune/sumo/static/less/questions.less b/kitsune/sumo/static/less/questions.less index 505db3ac27b..017eed33e77 100644 --- a/kitsune/sumo/static/less/questions.less +++ b/kitsune/sumo/static/less/questions.less @@ -159,7 +159,8 @@ h2 { } } - .is-helpful { + .is-helpful, + .is-spam { color: @textOrange; }