Remove load url from future

This commit is contained in:
Grant McConnaughey 2015-07-23 08:43:15 -05:00
parent 64e7effc28
commit be8a172e56
4 changed files with 1 additions and 4 deletions

View file

@ -1,6 +1,5 @@
{% extends "avatar/base.html" %}
{% load i18n avatar_tags %}
{% load url from future %}
{% block content %}
<p>{% trans "Your current avatar: " %}</p>

View file

@ -1,6 +1,5 @@
{% extends "avatar/base.html" %}
{% load i18n avatar_tags %}
{% load url from future %}
{% block content %}
<p>{% trans "Your current avatar: " %}</p>

View file

@ -1,6 +1,5 @@
{% extends "avatar/base.html" %}
{% load i18n %}
{% load url from future %}
{% block content %}
<p>{% trans "Please select the avatars that you would like to delete." %}</p>

View file

@ -1,2 +1,2 @@
{% load i18n %}{% load url from future %}{% url 'profile_detail' username=user.username as user_url %}{# TODO: support custom user models via get_username; actually, is this template even used anymore? #}
{% load i18n %}{% url 'profile_detail' username=user.username as user_url %}{# TODO: support custom user models via get_username; actually, is this template even used anymore? #}
{% blocktrans with user as avatar_creator and avatar.get_absolute_url as avatar_url %}<a href="{{ user_url }}">{{ avatar_creator }}</a> has updated their avatar <a href="{{ avatar_url }}">{{ avatar }}</a>.{% endblocktrans %}