From 026b8ae126f2fab71bdb306e73fc01b37b306b84 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 16 Jan 2018 11:10:36 +0100 Subject: UI: Fix search --- ishtar_common/templates/ishtar/sheet.html | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'ishtar_common/templates/ishtar/sheet.html') diff --git a/ishtar_common/templates/ishtar/sheet.html b/ishtar_common/templates/ishtar/sheet.html index 4f118f2f9..80bb1d4d1 100644 --- a/ishtar_common/templates/ishtar/sheet.html +++ b/ishtar_common/templates/ishtar/sheet.html @@ -1,8 +1,4 @@ -{% load i18n %} -{% block main_head %} - - +{% load i18n %}{% block main_head %} {% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} @@ -76,11 +72,13 @@ } jQuery(".next_page").click(function() { load_window("{{current_window_url}}" + get_next_table_id({{item.pk}}) + "/", - '', function(){$("#{{window_id}}").remove();}); + '', function(){$("#{{window_id}}").remove();}, + true); }); jQuery(".previous_page").click(function() { load_window("{{current_window_url}}" + get_previous_table_id({{item.pk}}) + "/", - '', function(){$("#{{window_id}}").remove();}); + '', function(){$("#{{window_id}}").remove();}, + true); }); }); -- cgit v1.2.3