From d0b831559c3de2c04c5dfcfff720cc700c427d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madis=20M=C3=A4gi?= Date: Sat, 24 Aug 2024 21:48:32 +0300 Subject: [PATCH] Remove unused template privacy.html --- inventory-app/templates/privacy.html | 42 ---------------------------- 1 file changed, 42 deletions(-) delete mode 100644 inventory-app/templates/privacy.html diff --git a/inventory-app/templates/privacy.html b/inventory-app/templates/privacy.html deleted file mode 100644 index 01a953e..0000000 --- a/inventory-app/templates/privacy.html +++ /dev/null @@ -1,42 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -
-

Contact information for our membership, be gentle!

- - - - - - - - - - - - - - - - - - {% for p in members %} - {% if p.type != "company" %} - - - - - - - - - - - {% endif %} - {% endfor %} - -
NameMail aliasPersonal emailPhoneHomepageInfoOnboarding
{{ p.full_name }}{{ p.mail_alias }}{{ p.mail }}{% if p.phone %}{{ p.phone }}{% else %}-{% endif %}{% if p.homepage %}{{ p.homepage }}{% else %}-{% endif %}{% if p.access and p.access.info %}check_circle{% else %} {% endif %}{% if p.access and p.access.onboarding %}check_circle{% else %} {% endif %}
-
-{% endblock %} -