]> git.ipfire.org Git - ipfire.org.git/blob - templates/talk/modules/contact.html
.gitignore: Add .vscode
[ipfire.org.git] / templates / talk / modules / contact.html
1 {% if application == "ConfBridge" %}
2 {{ _("Conference Room %s") % number }}
3
4 {% elif application == "Echo" %}
5 {{ _("Echo Test") }}
6
7 {% elif application in ("VoiceMail", "VoiceMailMain") %}
8 {{ _("Voicemail") }}:
9
10 {% if account %}
11 <a href="/phonebook/{{ account.uid }}">{{ account.name }}</a>
12 <span class="text-muted">({{ number }})</span>
13 {% end %}
14
15 {% elif account %}
16 <i class="fa fa-user"></i>
17 <a href="/phonebook/{{ account.uid }}">{{ account.name }}</a>
18 <span class="text-muted">({{ number }})</span>
19
20 {% elif number == "900" %}
21 {{ _("Conference Service") }}
22
23 {% elif number in ("980", "981", "982", "983", "984", "985", "986", "987", "988", "989") %}
24 {{ _("Parked Calls Extension") }} <span class="text-muted">({{ number }})</span>
25
26 {% elif number == "992" %}
27 {{ _("Music") }}
28
29 {% elif name and number %}
30 {{ name }} <span class="text-muted">({{ number }})</span>
31
32 {% elif number %}
33 {{ number }}
34
35 {% else %}
36 <span class="text-muted">{{ _("Unknown") }}</span>
37 {% end %}