{% extends "wagtailadmin/base.html" %} {% load wagtailadmin_tags i18n %} {% block titletag %}{% trans "Create an A/B Test" %} - {{ page.title }}{% endblock %} {% block content %} {% trans "Create an A/B Test" as title %} {% include "wagtailadmin/shared/header.html" with title=title subtitle=page.title icon='people-arrows' merged=1 %}
{% csrf_token %}

{% trans "Enter test details" %}

  • {% include "wagtailadmin/shared/field.html" with field=form.name %}
  • {% include "wagtailadmin/shared/field.html" with field=form.hypothesis %}

{% trans "Choose a goal" %}

{% trans "Sample size" %}

  • {% include "wagtailadmin/shared/field.html" with field=form.sample_size %}
{% trans 'Need help calculating sample size for A/B tests? Try Optimisely, Evan Miller, or AB Tasty.' %}

{% help_block status="info"%}

{% trans "A/B tests are calculated using Pearson's chi squared test and are set at 95% confidence level." %}

{% trans "Traffic is split evenly between each version." %}

{% trans 'Users with "Do Not Track" enabled are not counted.' %}

{% endhelp_block %}
{% endblock %} {% block extra_js %} {% include "wagtailadmin/pages/_editor_js.html" %} {% endblock %}