Skip to content

Commit 911ea47

Browse files
author
thecodinghouse
authored
Merge pull request #5 from andriisoldatenko/add-django-10-support
Remove obselete future template tag
2 parents 81728b0 + 89eefdb commit 911ea47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+69
-69
lines changed

flat/templates/accounts/account_login.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "accounts/account_form.html" %}
2-
{% load i18n future %}
2+
{% load i18n %}
33

44
{% block main %}
55
<section id="registration" class="container">

flat/templates/accounts/account_profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load i18n future mezzanine_tags accounts_tags %}
2+
{% load i18n mezzanine_tags accounts_tags %}
33

44
{% block meta_title %}{{ profile_user|username_or:"get_full_name" }}{% endblock %}
55
{% block title %}{{ profile_user|username_or:"get_full_name" }}{% endblock %}

flat/templates/accounts/includes/user_panel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n future mezzanine_tags accounts_tags %}
1+
{% load i18n mezzanine_tags accounts_tags %}
22

33
{% if request.user.is_authenticated %}
44
<li>

flat/templates/accounts/includes/user_panel_nav.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n future mezzanine_tags accounts_tags %}
1+
{% load i18n mezzanine_tags accounts_tags %}
22

33
<div class="navbar-right navbar-account-controls">
44
{% if request.user.is_authenticated %}

flat/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!doctype html>
22
<html lang="{{ LANGUAGE_CODE }}"{% if LANGUAGE_BIDI %} dir="rtl"{% endif %}>
3-
{% load pages_tags mezzanine_tags i18n future staticfiles %}
3+
{% load pages_tags mezzanine_tags i18n staticfiles %}
44

55
<head>
66
<meta http-equiv="Content-type" content="text/html; charset=utf-8">

flat/templates/blog/blog_post_detail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "blog/blog_post_list.html" %}
2-
{% load mezzanine_tags comment_tags keyword_tags rating_tags i18n future disqus_tags %}
2+
{% load mezzanine_tags comment_tags keyword_tags rating_tags i18n disqus_tags %}
33

44
{% block meta_title %}{{ blog_post.meta_title }}{% endblock %}
55

flat/templates/blog/blog_post_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load i18n future mezzanine_tags blog_tags keyword_tags disqus_tags %}
2+
{% load i18n mezzanine_tags blog_tags keyword_tags disqus_tags %}
33

44
{% block meta_title %}{% if page %}{{ page.meta_title }}{% else %}{% trans "Blog" %}{% endif %}{% endblock %}
55

flat/templates/blog/includes/filter_panel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load blog_tags keyword_tags i18n future %}
1+
{% load blog_tags keyword_tags i18n %}
22

33
{% block blog_recent_posts %}
44
{% blog_recent_posts 5 as recent_posts %}

flat/templates/generic/includes/rating.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load mezzanine_tags rating_tags i18n future %}
1+
{% load mezzanine_tags rating_tags i18n %}
22

33
<span id="rating-{{ rating_object.id }}">
44
{% if rating_average %}

flat/templates/includes/editable_form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load i18n future %}
1+
{% load i18n %}
22

33
{# Edit form #}
44
<form style="display:none;" class="editable-form" method="post"

0 commit comments

Comments
 (0)