1 {% extends "base/base.html" %}
5 <img src="https://upload.wikimedia.org/wikipedia/commons/c/c8/MH1Asimulator.JPG" style="width:100">
7 {% for exp in experiments %}
8 <div class="experiment" data-slug="{{ exp.config.slug }}">
10 {% for cohort in exp.config.cohorts %}
12 {% if exp.value == cohort.value %}
13 disabled class="active"
15 data-value="{{ cohort.value }}">{{ cohort.name }}</button>
39 $(".experiment button").click(function() {
40 document.cookie = 'EXPERIMENT_' + $(this).parent().data('slug') + '=' + $(this).data('value') + '; path=/';
41 window.location.reload(true);