Skip to content

Commit 33b2a3d

Browse files
authored
Merge pull request #223 from tobami/remove-future-url
Don't import url template tag from future.
2 parents 2476fa4 + 957c73e commit 33b2a3d

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

codespeed/templates/codespeed/base.html

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{% load url from future %}
21
<!DOCTYPE html>
32
<html>
43
<head>

codespeed/templates/codespeed/changes.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "codespeed/base_site.html" %}
2-
{% load url from future %}
2+
33
{% block title %}{{ block.super }}: Changes{% endblock %}
44

55
{% block navigation %}

codespeed/templates/codespeed/comparison.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "codespeed/base_site.html" %}
2-
{% load url from future %}
2+
33
{% block title %}{{ block.super }}: Comparison{% endblock %}
44

55
{% block extra_head %}

codespeed/templates/codespeed/timeline.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "codespeed/base_site.html" %}
2-
{% load url from future %}
2+
33
{% block title %}{{ block.super }}: Timeline{% endblock %}
44

55
{% block extra_head %}

sample_project/templates/home.html

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{% extends "codespeed/base_site.html" %}
2-
{% load url from future %}
32

43
{% block navigation %}
54
{% endblock navigation %}

0 commit comments

Comments
 (0)