From fbf3a20918732acde4744d8415f28db319773081 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Sun, 4 Aug 2013 17:01:17 -0500 Subject: [PATCH] in view/layout, response.files.insert instead of append --- VERSION | 2 +- applications/welcome/views/layout.html | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/VERSION b/VERSION index 92345b21..9cec8518 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.6.0-development+timestamp.2013.08.04.12.52.14 +Version 2.6.0-development+timestamp.2013.08.04.17.00.24 diff --git a/applications/welcome/views/layout.html b/applications/welcome/views/layout.html index dd56bcb9..64e382ea 100644 --- a/applications/welcome/views/layout.html +++ b/applications/welcome/views/layout.html @@ -40,11 +40,11 @@ - {{ - response.files.append(URL('static','css/web2py.css')) - response.files.append(URL('static','css/bootstrap.min.css')) - response.files.append(URL('static','css/bootstrap-responsive.min.css')) - response.files.append(URL('static','css/web2py_bootstrap.css')) + {{ + response.files.insert(0,URL('static','css/web2py.css')) + response.files.insert(1,URL('static','css/bootstrap.min.css')) + response.files.insert(2,URL('static','css/bootstrap-responsive.min.css')) + response.files.insert(3,URL('static','css/web2py_bootstrap.css')) }} {{include 'web2py_ajax.html'}}