move hidden add/edit/import forms below main content to help text-mode browsers a bit (#33)

This commit is contained in:
Simon Michael 2011-01-21 02:57:06 +00:00
parent ad4ae66d28
commit ce4347a2be

View File

@ -526,12 +526,12 @@ getJournalR = do
^sidecontent^ ^sidecontent^
%div#main.journal %div#main.journal
^navlinks.td^ ^navlinks.td^
^addform.td^
^editform'^
^importform^
%div#transactions %div#transactions
^filterform.td^ ^filterform.td^
^maincontent^ ^maincontent^
^addform.td^
^editform'^
^importform^
|] |]
postJournalR :: Handler RepPlain postJournalR :: Handler RepPlain
@ -559,12 +559,12 @@ getRegisterR = do
^sidecontent^ ^sidecontent^
%div#main.journal %div#main.journal
^navlinks.td^ ^navlinks.td^
^addform.td^
^editform'^
^importform^
%div#transactions %div#transactions
^filterform.td^ ^filterform.td^
^maincontent^ ^maincontent^
^addform.td^
^editform'^
^importform^
|] |]
postRegisterR :: Handler RepPlain postRegisterR :: Handler RepPlain
@ -661,9 +661,9 @@ getJournalOnlyR = do
%a#addformlink!href!onclick="return addformToggle(event)" add one transaction %a#addformlink!href!onclick="return addformToggle(event)" add one transaction
\ | $ \ | $
%a#editformlink!href!onclick="return editformToggle(event)" edit the whole journal %a#editformlink!href!onclick="return editformToggle(event)" edit the whole journal
#transactions ^txns^
^addform.td^ ^addform.td^
^editform'^ ^editform'^
#transactions ^txns^
|] |]
-- | Render a journal report as HTML. -- | Render a journal report as HTML.