wagtail-experiments
wagtail-experiments copied to clipboard
A/B testing for Wagtail
This package is really great, thank you Torchbox 😃 . Will there be support for redis? I think it will be could be useful.
Here is a working PR to bring this project up to speed with current versions. Travis passes and I added the test for these versions as well. I will happily...
Referencing this issue:[#27 ](https://github.com/torchbox/wagtail-experiments/issues/27) [Managing static files](https://docs.djangoproject.com/en/3.1/howto/static-files/) now require a different syntax: `{% load static %}` instead of `{% load staticfiles %}` which produces TemplateSyntaxError
I have a TemplateSyntaxError at /admin/experiments/experiment/report/1/ 'staticfiles' is not a registered tag library. Must be one of... I checked the HTML file and saw: ```{% load staticfiles %}``` but lately,...
The following line of code (in `report.html`) does not format floats correctly in some languages: `'{{ history_entry.conversion_rate|floatformat:2|escapejs }}'{% if not forloop.last %},{% endif %}` For example, in my Dutch language...
Because of this deprecated import, experiments is currently not compatible with Django 3. Even though Wagtail itself is. ```from django.utils.encoding import python_2_unicode_compatible```
Are there additional docs anywhere that contain recipes/examples of how to set up both the "redirect to page" type A/B testing, as well as the "triggered by JS" version of...
It's convenient to be able to use URLs outside wagtail as goals as well as wagtail pages. In this PR, I am adding a GoalURLMiddleware that checks the current URL...