Skip to content
Merged
Changes from 4 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
@@ -1,6 +1,6 @@
{% extends "buyersguide/bg_base.html" %}

{% load bg_selector_tags env l10n i18n localization static wagtailimages_tags %}
{% load bg_selector_tags env l10n i18n localization static wagtailimages_tags wagtailcore_tags %}

{% block head_extra %}
<meta property="og:title" content="{% blocktrans context "This can be localized. This is a reference to the “*batteries not included” mention on toys." %}privacy not included - {{ product.title }}{% endblocktrans %}" />
Expand Down Expand Up @@ -123,6 +123,9 @@ <h2 class="h3-heading">{% trans "What could happen if something goes wrong?" %}<
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 @@ -135,7 +138,7 @@ <h3 class="tw-mb-4 tw-font-zilla tw-text-2xl tw-leading-7">{% trans "Can it snoo
<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 @@ -156,7 +159,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 @@ -179,7 +182,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 @@ -211,7 +214,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 @@ -244,10 +247,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 %}

{% 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