{% extends "wagtailadmin/base.html" %} {% load wagtailcore_tags wagtailadmin_tags i18n %} {% block titletag %}{% trans "A/B testing activity log" %} - {{ page.title }} - {{ ab_test.name }}{% endblock %} {% block content %} {% trans "A/B testing activity log" as title %} {% include "wagtailadmin/shared/header.html" with title=title icon='people-arrows' merged=1 %}
{% trans "Page:" %} {{ page.title }}
{% if ab_test.hypothesis %}{% trans "Hypothesis:" %} {{ ab_test.hypothesis }}
{% endif %}{% trans "Goal:" %} {{ ab_test.get_goal_event_display }}{% if ab_test.goal_page_id %}: {{ ab_test.goal_page }}{% endif %}
{% if ab_test.created_by %}{% trans "Test by:" %} {{ ab_test.created_by }}
{% endif %} {% url 'wagtail_ab_testing_admin:compare_draft' page.id as compare_url%} {% blocktrans with compare_url=compare_url trimmed %} Compare pages and see how the control and variant pages differ. {% endblocktrans %}