{% extends "wagtailadmin/base.html" %} {% load i18n wagtailadmin_tags %} {% block titletag %}{% trans "Delete A/B Tests" %} - {{ page.title }}{% endblock %} {% block content %} {% include "wagtailadmin/shared/header.html" with title=_("A/B Tests") subtitle=page.get_admin_display_title icon="doc-empty-inverse" %}

{% blocktrans count counter=ab_tests.count %} 1 A/B test associated with this page will be permanently deleted. {% plural %} All {{ counter }} A/B tests associated with this page will be permanently deleted. {% endblocktrans %}

{% for test in ab_tests %} {% endfor %}
{% trans "Test Name" %} {% trans "Goal Event" %} {% trans "Status" %} {% trans "Created By" %} {% trans "Start Date" %}
{{ test.name }} {{ test.goal_event }} {{ test.get_status_description }} {{ test.created_by }} {% trans "Not started" as not_started_str %} {{ test.first_started_at|default:not_started_str }}

This action cannot be undone.

{% csrf_token %} {% trans "No, don't delete" %}
{% endblock %}