]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/voip/index.html
wiki: Only match usernames when a word starts with @
[ipfire.org.git] / src / templates / voip / index.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("VoIP") }}{% end block %}
4
5 {% block container %}
6 <section class="hero is-dark">
7 <div class="hero-body">
8 <div class="container">
9 <nav class="breadcrumb" aria-label="breadcrumbs">
10 <ul>
11 <li>
12 <a href="/">
13 {{ _("Home") }}
14 </a>
15 </li>
16 <li class="is-active">
17 <a href="#" aria-current="page">{{ _("VoIP") }}</a>
18 </li>
19 </ul>
20 </nav>
21
22 <h1 class="title">{{ _("VoIP") }}</h1>
23 </div>
24 </div>
25 </section>
26
27 {% if registrations %}
28 <section class="section">
29 <div class="container">
30 <h4 class="title is-4">
31 {{ _("Registrations") }}
32 <span class="tag">{{ len(registrations) }}</span>
33 </h4>
34
35 {% module VoIPRegistrations(registrations) %}
36 </div>
37 </section>
38 {% end %}
39
40 {% if conferences %}
41 <section class="section">
42 <div class="container">
43 <h4 class="title is-4">
44 {{ _("Conferences") }}
45 <span class="tag">{{ len(conferences) }}</span>
46 </h4>
47
48 {% module VoIPConferences(conferences) %}
49 </div>
50 </section>
51 {% end %}
52
53 {% if queues %}
54 <section class="section">
55 <div class="container">
56 <h4 class="title is-4">
57 {{ _("Queues") }}
58 <span class="tag">{{ len(queues) }}</span>
59 </h4>
60
61 {% module VoIPQueues(queues) %}
62 </div>
63 </section>
64 {% end %}
65
66 {% if outbound_registrations %}
67 <section class="section">
68 <div class="container">
69 <h4 class="title is-4">
70 {{ _("Outbound Registrations") }}
71 <span class="tag">{{ len(outbound_registrations) }}</span>
72 </h4>
73
74 {% module VoIPOutboundRegistrations(outbound_registrations) %}
75 </div>
76 </section>
77 {% end %}
78 {% end block %}