Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ <h2 class="h3-heading">{% trans "Tips to protect yourself" %}</h2>
data-product-label="2"
class="{{tab_class}}"
>
{% if product.ai_is_untrustworthy_ding %}
<img class="tw-h-6 tw-w-6 tw-ml-3" src="{% static "_images/buyers-guide/warning-ding.svg" %}" alt="{% trans "warning" context "icon description for screen readers" %}">
{% endif %}
{% trans "A.I." %}
</span>
</div>
Expand All @@ -150,7 +153,7 @@ <h3 class="tw-mb-4 tw-font-zilla tw-text-2xl tw-leading-7 tw-flex tw-items-cente
<div class="row">
{% trans "Camera" as camera %}
{% trans "Microphone" as microphone %}
{% trans "Tracks Location" as tracks_location %}
{% trans "Tracks location" as tracks_location %}

<div class="col-12 col-md-4">
{% include "fragments/it_uses.html" with title=camera device=product.camera_device app=product.camera_app %}
Expand All @@ -171,7 +174,7 @@ <h3 class="tw-mb-4 tw-font-zilla tw-text-2xl tw-leading-7">{% trans "What can be
<div class="row">
{% trans "Email" as email %}
{% trans "Phone" as phone %}
{% trans "Third party account" as third_party_account %}
{% trans "Third-party account" as third_party_account %}

<div class="col-12 col-md-4">
{% include "fragments/signup_requirement.html" with title=email value=product.signup_requires_email %}
Expand All @@ -194,7 +197,7 @@ <h3 class="tw-mb-4 tw-font-zilla tw-text-2xl tw-leading-7">{% trans "What data d

<div class="row">
{% trans "Personal" as personal_data_collected %}
{% trans "Biometric" as biometric_data_collected %}
{% trans "Body related" as biometric_data_collected %}
{% trans "Social" as social_data_collected %}

<div class="col-12 col-md-4">
Expand Down Expand Up @@ -226,7 +229,7 @@ <h3 class="tw-mb-4 tw-font-zilla tw-text-2xl tw-leading-7">{% trans "What data d
{% endif %}

{% if product.product_type == 'general' %}
{% trans "User friendly privacy information?" as user_friendly_privacy_policy %}
{% trans "User-friendly privacy information?" as user_friendly_privacy_policy %}
{% include "fragments/product_criterion.html" with label=user_friendly_privacy_policy value=product.user_friendly_privacy_policy|extended_yes_no help=product.user_friendly_privacy_policy_helptext %}
{% endif %}
</div>
Expand Down Expand Up @@ -259,10 +262,22 @@ <h3 class="tw-mb-4 tw-font-zilla tw-text-2xl tw-leading-7">{% trans "What data d
{% include "fragments/product_criterion.html" with label=uses_ai_label value=uses_ai info="/privacynotincluded/about/methodology" %}

{% if uses_ai != "No" %}
{% trans "Does the AI use your personal data to make decisions about you?" as ai_uses_personal_data %}
{% trans "Is this AI untrustworthy?" as ai_is_untrustworthy_label %}
{% include "fragments/product_criterion.html" with label=ai_is_untrustworthy_label value=product.ai_is_untrustworthy|extended_yes_no ding=product.ai_is_untrustworthy_ding %}

<section class="criterion">
<div class="primary-info">
<h3 class="tw-mb-4 tw-font-zilla tw-text-2xl tw-leading-7">{% trans "What kind of decisions does the AI make about you or for you?" %}</h3>
<p class="rating pni-product-smaller-body mb-0">
{{product.ai_what_can_it_do|richtext}}
</p>
</div>
</section>

{% trans "Is the company transparent about how the AI works?" as ai_uses_personal_data %}
{% include "fragments/product_criterion.html" with label=ai_uses_personal_data value=product.ai_uses_personal_data|extended_yes_no %}

{% trans "Does the company allow users to see how the AI works?" as ai_is_transparent %}
{% trans "Does the user have control over the AI features?" as ai_is_transparent %}
{% include "fragments/product_criterion.html" with label=ai_is_transparent value=product.ai_is_transparent|extended_yes_no %}

<p class="pni-product-smaller-body mb-0">{{product.ai_helptext}}</p>
Expand Down