Add Content Moderation & AMO Policies legal docs (#14322)

This commit is contained in:
Reem H 2024-03-23 02:12:39 +11:00 коммит произвёл GitHub
Родитель e725c418a4
Коммит 12063a9f32
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 31 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,9 @@
{#
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
#}
{% extends "legal/docs-base.html" %}
{% block page_title %}{{ ftl('legal-amo-policies') }}{% endblock %}

Просмотреть файл

@ -0,0 +1,9 @@
{#
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
#}
{% extends "legal/docs-base.html" %}
{% block page_title %}{{ ftl('legal-content-moderation') }}{% endblock %}

Просмотреть файл

@ -66,5 +66,15 @@ urlpatterns = (
LegalDocView.as_view(template_name="legal/report-infringement.html", legal_doc_name="report_infringement"),
name="legal.report-infringement",
),
path(
"content-moderation/",
LegalDocView.as_view(template_name="legal/content-moderation.html", legal_doc_name="content_moderation_practices"),
name="legal.content-moderation",
),
path(
"amo-policies/",
LegalDocView.as_view(template_name="legal/amo-policies.html", legal_doc_name="amo_policies"),
name="legal.amo-policies",
),
path("defend-mozilla-trademarks/", views.fraud_report, name="legal.fraud-report"),
)

Просмотреть файл

@ -24,7 +24,7 @@
<p>
Transparency is a key part of how Mozilla approaches user trust. As an open source project that relies on open development,
we build transparency into the way we write our code. Additionally, our product documentation and notices describe how our
products work and how we handle user data.
products work and how we handle user data. Our <a href="{{ url('legal.content-moderation') }}">Content Moderation page</a> provides more detail on how we handle content moderation generally.
</p>
<p>
With this transparency in mind, we publish bi-annual transparency reports. Most industry transparency reports offer insights

Просмотреть файл

@ -37,3 +37,5 @@ legal-report-copyright = Report Copyright or Trademark Infringement
legal-hubs = { -brand-name-mozilla-hubs }
legal-hubs-terms = { -brand-name-mozilla-hubs } Terms of Service
legal-mozilla-subscription-services = { -brand-name-mozilla } Subscription Services
legal-content-moderation = Content Moderation Practices
legal-amo-policies = AMO Policies