diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-21 02:16:07 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-21 02:16:07 -0500 |
commit | b0b29a54c833859b17a2ce2ead166872ad64b17d (patch) | |
tree | 52f28005ab7b909c8e64fb255a36bed4113bb774 /python | |
parent | 635660579cde7f02dc72d095b0661da567bb201d (diff) | |
download | fork-ledger-b0b29a54c833859b17a2ce2ead166872ad64b17d.tar.gz fork-ledger-b0b29a54c833859b17a2ce2ead166872ad64b17d.tar.bz2 fork-ledger-b0b29a54c833859b17a2ce2ead166872ad64b17d.zip |
Default to 40 transactions per screen in server.py
Diffstat (limited to 'python')
-rw-r--r-- | python/server.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/server.py b/python/server.py index 541f4541..13182836 100644 --- a/python/server.py +++ b/python/server.py @@ -93,10 +93,10 @@ templateDef = '''#encoding utf-8 <img src="/icons/next.png" class="next"/> <img src="/icons/last.png" class="last"/> <select class="pagesize"> - <option selected="selected" value="100">100</option> + <option selected="selected" value="40">40</option> + <option value="100">100</option> <option value="200">200</option> - <option value="500">500</option> - <option value="1000">1000</option> + <option value="300">300</option> </select> </form> </div> |