diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-16 11:10:36 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-16 11:10:36 +0100 |
commit | 0cb3504d4a655d435194f257895dbbf0fc96c2a4 (patch) | |
tree | badd2a2c25d00d9c920f3f1c9a9b65066cb13c10 /ishtar_common/templates/ishtar/sheet.html | |
parent | 9b3581e13e690f3deed43280f96b9aa08784861d (diff) | |
download | Ishtar-0cb3504d4a655d435194f257895dbbf0fc96c2a4.tar.bz2 Ishtar-0cb3504d4a655d435194f257895dbbf0fc96c2a4.zip |
UI: Fix search
Diffstat (limited to 'ishtar_common/templates/ishtar/sheet.html')
-rw-r--r-- | ishtar_common/templates/ishtar/sheet.html | 12 |
1 files changed, 5 insertions, 7 deletions
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 %} -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +{% load i18n %}{% block main_head %}<html lang="en"> <head> <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} </title> @@ -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); }); }); </script> |