Back to Frontend

Experiments

static/src/javascripts/projects/common/views/experiments/overlay.html

latest533 B
Original Source

Experiments

Clear allReload> <% testGroups.forEach(function(testGroup) { %>

<%=testGroup.name%> tests

<% testGroup.tests.forEach(function(test) { %> - <%= test.id %>

<%= test.description %> <% if (test.isSwitchedOn && !test.isExpired) { test.variants.forEach(function(variant) { %> <%= variant.id %> <% }); } if (!test.isSwitchedOn) { %> You can turn this switch on using the Frontend Switchboard <% } if (test.isExpired) { %> This test has expired <% } %> <% }); %> <% }); %>