mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-02-21 12:50:54 +01:00
Remove deprecated load url from future
This commit is contained in:
parent
807e0c5ea9
commit
ed9581e5de
@ -1,5 +1,4 @@
|
|||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load url from future %}
|
|
||||||
{% load saved_queries %}
|
{% load saved_queries %}
|
||||||
{% load load_helpdesk_settings %}
|
{% load load_helpdesk_settings %}
|
||||||
{% with request|load_helpdesk_settings as helpdesk_settings %}
|
{% with request|load_helpdesk_settings as helpdesk_settings %}
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Ignored E-Mail Addresses" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -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 title %}django-helpdesk API Documentation{% endblock %}
|
||||||
{% block heading %}django-helpdesk API Documentation{% endblock %}
|
{% block heading %}django-helpdesk API Documentation{% endblock %}
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
{% load url from future %}
|
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<style type='text/css'>
|
<style type='text/css'>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{% load i18n %}{% load url from future %}
|
{% load i18n %}
|
||||||
<table class="table table-hover table-bordered table-striped ticket-stats">
|
<table class="table table-hover table-bordered table-striped ticket-stats">
|
||||||
<caption>{% trans "Current Ticket Stats" %}</caption>
|
<caption>{% trans "Current Ticket Stats" %}</caption>
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -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 %}
|
<table class="table table-hover table-bordered table-striped">{% if ticket_list_caption %}
|
||||||
<caption>{{ ticket_list_caption }}</caption>{% endif %}
|
<caption>{{ ticket_list_caption }}</caption>{% endif %}
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{% load i18n humanize %}{% load url from future %}
|
{% load i18n humanize %}
|
||||||
<table class="table table-hover table-bordered table-striped">
|
<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>
|
<caption>{% trans "Unassigned Tickets" %} {% trans "(pick up a ticket if you start to work on it)" %}</caption>
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{% load i18n %}{% load url from future %}
|
{% load i18n %}
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
|
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{% load i18n %}{% load url from future %}
|
{% load i18n %}
|
||||||
{% load load_helpdesk_settings %}
|
{% load load_helpdesk_settings %}
|
||||||
{% with request|load_helpdesk_settings as helpdesk_settings %}
|
{% with request|load_helpdesk_settings as helpdesk_settings %}
|
||||||
<html>
|
<html>
|
||||||
|
@ -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 %}
|
{% block helpdesk_body %}
|
||||||
|
|
||||||
|
@ -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 %}
|
{% block helpdesk_body %}
|
||||||
<h2>{% trans "View a Ticket" %}</h2>
|
<h2>{% trans "View a Ticket" %}</h2>
|
||||||
|
@ -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_title %}{% trans "RSS Feeds" %}{% endblock %}
|
||||||
{% block helpdesk_body %}
|
{% block helpdesk_body %}
|
||||||
<h2>{% trans "RSS Feeds" %}</h2>
|
<h2>{% trans "RSS Feeds" %}</h2>
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Change System Settings" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -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_title %}{% trans "View Ticket Details" %}{% endblock %}
|
||||||
{% block helpdesk_head %}
|
{% block helpdesk_head %}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Add Ticket CC" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Delete Ticket CC" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Ticket CC Settings" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Add Ticket Dependency" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Delete Ticket Dependency" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{% load i18n humanize %}{% load url from future %}
|
{% load i18n humanize %}
|
||||||
<table class="table table-hover table-bordered table-striped">
|
<table class="table table-hover table-bordered table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr class='row_tablehead'><td colspan='2'><h3>{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status }}]</h3> <span class='ticket_toolbar'>
|
<tr class='row_tablehead'><td colspan='2'><h3>{{ ticket.id }}. {{ ticket.title }} [{{ ticket.get_status }}]</h3> <span class='ticket_toolbar'>
|
||||||
|
@ -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_title %}{% trans "Tickets" %}{% endblock %}
|
||||||
{% block helpdesk_head %}
|
{% block helpdesk_head %}
|
||||||
|
|
||||||
|
@ -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 %}
|
{% block helpdesk_title %}{% trans "Change User Settings" %}{% endblock %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user