# HG changeset patch # User Goffi # Date 1692264319 -7200 # Node ID d54565d166d739a6c7179be0b51916df64b87275 # Parent c1f384f006e803ec48ecc9d84009e3223f075431 bulma (call/status): add "in-call", "on-hold" and "reconnecting" statuses diff -r c1f384f006e8 -r d54565d166d7 sat_templates/templates/bulma/call/call_status.html --- a/sat_templates/templates/bulma/call/call_status.html Wed Aug 16 18:27:06 2023 +0200 +++ b/sat_templates/templates/bulma/call/call_status.html Thu Aug 17 11:25:19 2023 +0200 @@ -1,3 +1,4 @@ + {% if status == none %}
@@ -9,4 +10,16 @@

{% trans %}{{name}}'s device is ringing…{% endtrans %}

+{% elif status == "in-call" %} +
+

{% trans %}In call with {{name}}.{% endtrans %}

+
+{% elif status == "on-hold" %} +
+

{% trans %}Call with {{name}} is on hold…{% endtrans %}

+
+{% elif status == "reconnecting" %} +
+

{% trans %}Reconnecting to {{name}}…{% endtrans %}

+
{% endif %}