]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/people/modules/registrations.html
Rename accounts.ipfire.org to people.ipfire.org
[ipfire.org.git] / src / templates / people / modules / registrations.html
1 <table class="table table-sm mb-0">
2 <tbody>
3 {% for reg in account.sip_registrations %}
4 <tr>
5 <td>{{ reg.user_agent }}</td>
6 <td>{{ reg.protocol }}/{{ reg.network_ip }}:{{ reg.network_port }}</td>
7 <td class="text-right">
8 {% if reg.is_reachable() and reg.latency %}
9 {{ "%.2f ms" % reg.latency }}
10 {% else %}
11 <span class="text-muted">{{ _("N/A") }}</span>
12 {% end %}
13 </td>
14 </tr>
15 {% end %}
16 </tbody>
17 </table>