From 2c10956e1b9cb02cd6892773df622f9c6c153994 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 18 May 2017 21:40:04 +0100 Subject: [PATCH] templates: Use compat.cycle everywhere We missed this previously and now it's breaking Django 1.6. Signed-off-by: Stephen Finucane Fixes: 8ae7705 ("templates: Resolve cycle issues with Django 1.10") --- patchwork/templates/patchwork/projects.html | 1 + 1 file changed, 1 insertion(+) diff --git a/patchwork/templates/patchwork/projects.html b/patchwork/templates/patchwork/projects.html index 9ce1918c..d75077d4 100644 --- a/patchwork/templates/patchwork/projects.html +++ b/patchwork/templates/patchwork/projects.html @@ -1,4 +1,5 @@ {% extends "base.html" %} +{% load cycle from compat %} {% block title %}Project List{% endblock %} {% block body %} -- 2.47.3