Skip to content

Commit 5fe3831

Browse files
author
Rayan Chikhi
committed
Templates are now forward-compatible with >=1.4
1 parent 6bc5764 commit 5fe3831

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

codespeed/templates/codespeed/changes.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% extends "base.html" %}
2+
{% load url from future %}
23
{% block title %}{{ block.super }}: Changes{% endblock %}
34

45
{% block navigation %}

codespeed/templates/codespeed/comparison.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% extends "base.html" %}
2+
{% load url from future %}
23
{% block title %}{{ block.super }}: Comparison{% endblock %}
34

45
{% block extra_head %}

codespeed/templates/codespeed/timeline.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% extends "base.html" %}
2+
{% load url from future %}
23
{% block title %}{{ block.super }}: Timeline{% endblock %}
34

45
{% block extra_head %}

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Django==1.5.1
1+
Django>=1.4
22
South<=2.0
33
isodate==0.4.8
44
-e git://github.com/toastdriven/django-tastypie.git@5397dec04fe83092a56ba14a843731f2aa08184d#egg=django-tastypie

sample_project/templates/base.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% load url from future %}
12
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
23
<html>
34
<head>

sample_project/templates/home.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% extends "base.html" %}
2+
{% load url from future %}
23

34
{% block navigation %}
45
{% endblock navigation %}

0 commit comments

Comments
 (0)