Remove unused template privacy.html
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Madis Mägi 2024-08-24 21:48:32 +03:00
parent 816d4fc8ce
commit d0b831559c

View File

@ -1,42 +0,0 @@
{% extends 'base.html' %}
{% block content %}
<div class="container">
<p>Contact information for our membership, be gentle!</p>
<table>
<thead>
<tr>
<th>Name</th>
<th class="tooltipped" data-tooltip="This mail alias is shown in Gogs, Nextcloud etc services in order to not expose users personal e-mail address. Mails are forwarded to personal address. This is UPN or 'userPrincipalName' in AD, if alias is shown disabled check that it uses correct UPN suffix @k-space.ee and personal mail attribute is set to enable forwarding">Mail alias</th>
<th class="tooltipped" data-tooltip="This is AD 'Pager' field">Personal email</th>
<th class="tooltipped" data-tooltip="This is AD 'Telephone number' field. For reaching member out of band">Phone</th>
<th class="tooltipped" data-tooltip="This is AD 'Homepage' field">Homepage</th>
<th class="tooltipped" data-tooltip="This person receives copies of e-mails sent to info@k-space.ee mail alias. Inferred from membership of 'Info' AD group.">Info</th>
<th class="tooltipped" data-tooltip="This person can add users in AD domain and reset user passwords. Inferred from membership of 'Onboarding' group.">Onboarding</th>
<!-- <th class="tooltipped" data-tooltip="This person can reissue VPN access at ca5.certidude.rocks site. Inferred from membership of 'VPN Admins' AD group.">VPN&nbsp;admin</th>
<th class="tooltipped" data-tooltip="This person can administer AD domain and help out in corner cases. Inferred from membership of 'Domain Admins' AD group.">AD&nbsp;admin</th> -->
</tr>
</thead>
<tbody>
{% for p in members %}
{% if p.type != "company" %}
<tr style="{% if not p.enabled %}opacity:25%;{% endif %}">
<td><a href="/m/user/{{ p.full_name }}">{{ p.full_name }}</a></td>
<td><a href="mailto:{{ p.mail_alias }}">{{ p.mail_alias }}</a></td>
<td><a href="mailto:{{ p.mail }}">{{ p.mail }}</a></td>
<td>{% if p.phone %}<a href="tel:{{p.phone}}">{{ p.phone }}</a>{% else %}-{% endif %}</td>
<td>{% if p.homepage %}<a href="http://{{ p.homepage }}">{{ p.homepage }}</a>{% else %}-{% endif %}</td>
<td>{% if p.access and p.access.info %}<i class="material-icons">check_circle</i>{% else %}&nbsp;{% endif %}</td>
<td>{% if p.access and p.access.onboarding %}<i class="material-icons">check_circle</i>{% else %}&nbsp;{% endif %}</td>
<!-- <td>{% if p.access and p.access.vpn_admins %}<i class="material-icons">check_circle</i>{% else %}&nbsp;{% endif %}</td>
<td>{% if p.access and p.access.domain_admins %}<i class="material-icons">check_circle</i>{% else %}&nbsp;{% endif %}</td> -->
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}