]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/talk/modules/contact.html
Introduce autotools
[ipfire.org.git] / src / templates / talk / modules / contact.html
CommitLineData
56851b01
MT
1{% if application == "ConfBridge" %}
2 {{ _("Conference Room %s") % number }}
3
61b16172
MT
4{% elif application == "Echo" %}
5 {{ _("Echo Test") }}
6
991a0808 7{% elif application in ("VoiceMail", "VoiceMailMain") %}
56851b01
MT
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 %}
5ac74b02
MT
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
5ac74b02
MT
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
5ac74b02
MT
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 %}