diff options
author | Stephen Finucane <stephen@that.guru> | 2017-05-18 21:40:04 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2017-05-18 21:40:04 +0100 |
commit | 2c10956e1b9cb02cd6892773df622f9c6c153994 (patch) | |
tree | 12bc167f8177330bead310e18ca4edcc1f94315e | |
parent | 124fcf4c5e464dd6aaadd155bcf0b8d28e4fe381 (diff) | |
download | patchwork-2c10956e1b9cb02cd6892773df622f9c6c153994.tar patchwork-2c10956e1b9cb02cd6892773df622f9c6c153994.tar.gz |
templates: Use compat.cycle everywhere
We missed this previously and now it's breaking Django 1.6.
Signed-off-by: Stephen Finucane <stephen@that.guru>
Fixes: 8ae7705 ("templates: Resolve cycle issues with Django 1.10")
-rw-r--r-- | patchwork/templates/patchwork/projects.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/patchwork/templates/patchwork/projects.html b/patchwork/templates/patchwork/projects.html index 9ce1918..d75077d 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 %} |