diff --git a/hypha/apply/funds/templates/funds/includes/submission-list-item.html b/hypha/apply/funds/templates/funds/includes/submission-list-item.html index f7e5b4f5da8b63b62b637ae79f6575b943b5ead8..555cd8f51f32658e44cf27c378e4b545e5fbe109 100644 --- a/hypha/apply/funds/templates/funds/includes/submission-list-item.html +++ b/hypha/apply/funds/templates/funds/includes/submission-list-item.html @@ -156,10 +156,13 @@ {% comment %} Comment Count {% endcomment %} <span class="inline-block w-10"> {% if s.comment_count %} - <span class="flex items-center"> - {% heroicon_outline "chat-bubble-left" aria_hidden="true" size=16 class="stroke-2 me-1 inline-block" %} + <a class="flex items-center text-gray-900 group hover:text-light-blue transition-colors" + title="{% trans "View communications" %}" + href="{% url "funds:submissions:detail" s.id %}?ref=all-alt#communications" + > + {% heroicon_outline "chat-bubble-left" aria_hidden="true" size=16 class="stroke-2 me-1 inline-block group-hover:stroke-light-blue" %} <span class="inline-block font-medium">{{ s.comment_count }}</span> - </span> + </a> {% endif %} </span> </div>