django-simple-templates provides easy, designer-friendly templates and A/B testing (split testing) friendly tools for Django. If you have used Django's flatpages
app, you'll be able to appreciate what django-simple-templates gives you.
django-simple-templates is intended to:
- provide the means to isolate template designer effort; reduce web developer involvement
- provide an easy way to launch flat or simple pages quickly; no URL pattern or view needed
- provide a quick and simple method to test page variations with Django templates
If you need to quickly launch landing pages for marketing campaigns, then django-simple-templates is for you. If you have a great web designer who knows next to nothing about Django, then django-simple-templates is a good fit. It helps to reduce the need for:
- training web designers on Django URL patterns, views, etc. - you can restrict the necessary knowledge to Django templates and template tags (custom and/or builtin)
- involving web developers to create stub page templates or to convert designer-created static HTML pages to Django templates
If you want to be able to A/B test any Django template, then django-simple-templates will absolutely help you. I've always found A/B testing with Django (and frameworks in general) to be somewhat painful - hopefully this app alleviates that pain for others too.
It's a standard PyPi install:
pip install django-simple-templates
To use the simple page template functionality, add the SimplePageFallbackMiddleware
to your MIDDLEWARE_CLASSES
in your settings.py
:
MIDDLEWARE_CLASSES = (
... # other middleware here
'simple_templates.middleware.SimplePageFallbackMiddleware'
)
Note that this middleware is not necessary if you only want to use the get_ab_template
functionality (see below).
django-simple-templates has a few options to help cater to your project's needs. You can override these by setting them in your settings.py. Each has an acceptable default value, so you do not need to set them:
SIMPLE_TEMPLATES_AB_PARAM
: optional; defaults to"ab"
. This is the query string (request.GET
) parameter that contains the name of the A/B testing template name.SIMPLE_TEMPLATES_AB_DIR
: optional; defaults to"ab_templates
". This is the subdirectory inside your template directory where you should place your A/B testing page templates.SIMPLE_TEMPLATES_DIR
: optional; defaults to"simple_templates
". This is the subdirectory inside your template directory where you should place your simple page templates.
To create a "simple template" page, all you need to do is create a template file under SIMPLE_TEMPLATES_DIR
. This is your standard Django template format, inheritance, etc. The directory structure you place it in determines the URL structure. For example, creating a template here:
<your_templates_dir>/simple_templates/en/contact.html
would result in the a URL structure like:
http://www.example.com/en/contact/
The SimplePageFallbackMiddleware
middleware kicks in and looks for possible template file matches when an Http404
is the response to a web request, so if you had a URL pattern and view that handled the /en/contact/
URL, this middleware would not do anything at all.
To create an A/B testing template (the variation template) for the example simple page template above, you'd create the variation template under the appropriate directory structure under SIMPLE_TEMPLATES_AB_DIR
:
<your_templates_dir>/ab_templates/simple_templates/en/contact/variation1.html
and the resulting URL would be:
http://www.example.com/en/contact/?ab=variation1
So you can see that the A/B testing variation template needs to exist in a directory structure mimicking the original template's directory structure plus its filename without extension.
Special case: If you want to create simple page template for the root 'home' page of your website, you given the simple template a special name of _homepage_.html
. URL and directory example:
<your_templates_dir>/simple_templates/_homepage_.html
would be accessible at:
http://www.example.com/
If you wanted to create an A/B testing variation template on this page, the simple variation template would exist here:
<your_templates_dir>/ab_templates/simple_templates/_homepage_/variation2.html
and you'd access it like the examples above:
http://www.example.com/?ab=variation2
To use the A/B testing functionality in your existing code, import get_ab_template
and use it in your view:
from django.shortcuts import render
from simple_templates.utils import get_ab_template
def user_signup(request):
template = get_ab_template(request, 'profiles/user/signup.html')
return render(request, template)
The get_ab_template
function works like this:
- pass Django's
request
object and the view's normal template intoget_ab_template
- the
get_ab_template
will look in request.GET to see if there was anab
parameter in the query string - if
ab
is found in request.GET,get_ab_template
will attempt to find the associated template file underSIMPLE_TEMPLATES_AB_DIR
- if the
ab
template file is found, theab
template path is returned - if either
ab
or the template file associated withab
is not found, the passed-in 'default' template file is returned
Here's an example to demonstrate. If you want to A/B test your signup page with the URL:
http://www.example.com/user/signup/
and your current user signup template file located here:
<your_templates_dir>/profiles/user/signup.html
with a variation called 'fewer-inputs', you would first modify your Django view for a user signing up to use get_ab_template
and you would have this URL as your variation page:
http://www.example.com/user/signup/?ab=fewer-inputs
and your variation template file should be placed here:
<your_templates_dir>/ab_templates/profiles/user/signup/fewer-inputs.html
You need to ensure you don't create duplicate content for search engines. What's duplicate content? Two pages that are (almost) identical. When you're doing A/B testing, you're frequently doing minor variations on a theme - perhaps only the colour of a single button.
Canonical link elements to the rescue. The link should point to the 'canonical' page URL (without the 'ab=variation-name'
parameter). This would be the original page URL that you want indexed by search engines. This way, any search engine that sees a variation template page will 'ignore' it because you're telling it to see it the same as the original page.
But you can make this easier by using the included remove_query_param
template filter in your base.html, like so:
<html>
<head>
<title>base.html template</title>
<link rel="canonical" href="{{ request.get_full_path|remove_query_param:'ab' }}" />
</head>
<body>
...
</body>
</html>
Extend all of your templates (normal view templates, simple templates, and A/B templates) from this base.html
. Here, the remove_query_param
template filter removes the ab
parameter to create the canonical link for you on every single page on your site, making split testing easy, one less thing to think about.
Note that in your settings.py
you'll need to update the TEMPLATES
setting to add "django.core.context_processors.request"
to the context_processors
option.
To run the django-simple-templates tests, follow these steps:
- clone the django-simple-templates repository
- change directory into the repository
- initialize a 'virtualenv':
python -m venv venv
- activate the virtualenv:
source venv/bin/activate
- install the dependencies for testing django-simple-templates:
pip install -r test_project/test-requirements.txt
- run the tests:
python test_project/manage.py test simple_templates
Tests have been run under:
- Python 2.7.3 and Django 1.4.3
- (please report other results)
django-simple-templates been used in the following version configurations:
- Python 3.8+
- Django 4.2+
Feel free to open an issue here: http://github.com/jaddison/django-simple-templates/issues/ - or better yet, submit a pull request with fixes and improvements.