From 686fff945e0b4697aa74da404ce90534bb7b121d Mon Sep 17 00:00:00 2001 From: Jonas Kohl Date: Thu, 26 Dec 2024 20:12:34 +0100 Subject: Add async email and topic subscribing --- .../templates/bootstrap-3/view_topic.twig | 40 ++++++++++++++++++---- 1 file changed, 34 insertions(+), 6 deletions(-) (limited to 'src/application/templates/bootstrap-3/view_topic.twig') diff --git a/src/application/templates/bootstrap-3/view_topic.twig b/src/application/templates/bootstrap-3/view_topic.twig index 383dd41..7009afc 100644 --- a/src/application/templates/bootstrap-3/view_topic.twig +++ b/src/application/templates/bootstrap-3/view_topic.twig @@ -30,6 +30,12 @@ or currentUser.hasPermission(permission("DELETE_OTHER_TOPIC")) ) %} +{% set canSubscribe = currentUser is not null %} + +{% set isSubscribed = + currentUser is not null + and ctx.subscription is not null %} + {% set title = ctx.topic.title %} {% extends "base.twig" %} @@ -178,30 +184,40 @@ {{ ctx.topic.title }}
{% if canEdit and not ctx.topic.isLocked %} - + {% endif %} {% if canReply %} - + + {% endif %} + {% if canSubscribe %} +
+ + {% if isSubscribed %} + + {% else %} + + {% endif %} +
{% endif %} {% if canEdit %} {% if ctx.topic.isLocked %}
- +
{% else %}
- +
{% endif %} {% endif %} {% if canDelete %}
- +
{% endif %}
@@ -209,7 +225,14 @@ {{ __("Started by %user% on %date%", { "user": (ctx.topicAuthor is not null) ? ('' ~ ctx.topicAuthor.displayName|e("html") ~ '') : __("(deleted)"), "date": '' ~ ctx.topic.creationDate.format("c")|e("html") ~ '', - }) }} + }) }} • {{ ___( + "%n% person is watching this topic", + "%n% people are watching this topic", + ctx.subscription_count, + { + n: ctx.subscription_count, + }, + ) }} {% if canEdit %} {% else %} -- cgit v1.2.3