Skip to content

Commit

Permalink
Merge pull request #320 from tony-zhu/master
Browse files Browse the repository at this point in the history
Remove deprecated load url from future
  • Loading branch information
rossp committed Apr 16, 2015
2 parents 2776b89 + ed9581e commit ffb6243
Show file tree
Hide file tree
Showing 22 changed files with 20 additions and 22 deletions.
1 change: 0 additions & 1 deletion helpdesk/templates/helpdesk/base.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{% load i18n %}
{% load url from future %}
{% load saved_queries %}
{% load load_helpdesk_settings %}
{% with request|load_helpdesk_settings as helpdesk_settings %}
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/email_ignore_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n %}

{% block helpdesk_title %}{% trans "Ignored E-Mail Addresses" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/help_api.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/help_base.html" %}{% load url from future %}
{% extends "helpdesk/help_base.html" %}

{% block title %}django-helpdesk API Documentation{% endblock %}
{% block heading %}django-helpdesk API Documentation{% endblock %}
Expand Down
1 change: 0 additions & 1 deletion helpdesk/templates/helpdesk/help_base.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{% load url from future %}
<html>
<head>
<style type='text/css'>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/include/stats.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n %}{% load url from future %}
{% load i18n %}
<table class="table table-hover table-bordered table-striped ticket-stats">
<caption>{% trans "Current Ticket Stats" %}</caption>
<thead>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/include/tickets.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n humanize %}{% load url from future %}
{% load i18n humanize %}
<table class="table table-hover table-bordered table-striped">{% if ticket_list_caption %}
<caption>{{ ticket_list_caption }}</caption>{% endif %}
<thead>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/include/unassigned.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n humanize %}{% load url from future %}
{% load i18n humanize %}
<table class="table table-hover table-bordered table-striped">
<caption>{% trans "Unassigned Tickets" %} {% trans "(pick up a ticket if you start to work on it)" %}</caption>
<thead>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/navigation.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n %}{% load url from future %}
{% load i18n %}

<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="navbar-header">
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/public_base.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n %}{% load url from future %}
{% load i18n %}
{% load load_helpdesk_settings %}
{% with request|load_helpdesk_settings as helpdesk_settings %}
<html>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/public_homepage.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/public_base.html" %}{% load i18n bootstrap %}{% load url from future %}
{% extends "helpdesk/public_base.html" %}{% load i18n bootstrap %}

{% block helpdesk_body %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/public_view_form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/public_base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/public_base.html" %}{% load i18n %}

{% block helpdesk_body %}
<h2>{% trans "View a Ticket" %}</h2>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/rss_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n %}
{% block helpdesk_title %}{% trans "RSS Feeds" %}{% endblock %}
{% block helpdesk_body %}
<h2>{% trans "RSS Feeds" %}</h2>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/system_settings.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}{% load user_admin_url %}
{% extends "helpdesk/base.html" %}{% load i18n %}{% load user_admin_url %}

{% block helpdesk_title %}{% trans "Change System Settings" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n bootstrap humanize %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n bootstrap humanize %}
{% block helpdesk_title %}{% trans "View Ticket Details" %}{% endblock %}
{% block helpdesk_head %}
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_cc_add.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n %}

{% block helpdesk_title %}{% trans "Add Ticket CC" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_cc_del.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n %}

{% block helpdesk_title %}{% trans "Delete Ticket CC" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_cc_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n %}

{% block helpdesk_title %}{% trans "Ticket CC Settings" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_dependency_add.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n %}

{% block helpdesk_title %}{% trans "Add Ticket Dependency" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_dependency_del.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n %}

{% block helpdesk_title %}{% trans "Delete Ticket Dependency" %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_desc_table.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load i18n humanize %}{% load url from future %}
{% load i18n humanize %}
<table class="table table-hover table-bordered table-striped">
<thead>
<tr class='row_tablehead'><td colspan='2'><h3>{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status }}]</h3> <span class='ticket_toolbar'>
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n humanize %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n humanize %}
{% block helpdesk_title %}{% trans "Tickets" %}{% endblock %}
{% block helpdesk_head %}

Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/user_settings.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "helpdesk/base.html" %}{% load i18n bootstrap %}{% load url from future %}
{% extends "helpdesk/base.html" %}{% load i18n bootstrap %}

{% block helpdesk_title %}{% trans "Change User Settings" %}{% endblock %}

Expand Down

0 comments on commit ffb6243

Please sign in to comment.