# HG changeset patch # User Todd Larsen # Date 1222821329 0 # Node ID 9cca97feadaa1c4340d47f5966c57aa1198cfd46 # Parent 3ebe00b44212dbeb737cb3e528619ee3c5c552d8 Add sidebar menu items for /site/docs/list and /site/docs/edit. They do not currently have view functions attached, but there are other links in the mock-up portion of the sidebar that don't currently work, either. The goal is to commit the /site/docs/list and /site/docs/edit changes in small bits that don't break anyone else. diff -r 3ebe00b44212 -r 9cca97feadaa app/soc/logic/site/sidebar.py --- a/app/soc/logic/site/sidebar.py Wed Oct 01 00:33:43 2008 +0000 +++ b/app/soc/logic/site/sidebar.py Wed Oct 01 00:35:29 2008 +0000 @@ -100,6 +100,12 @@ menu.MenuItem( 'Create a new Site User', value='/site/user/profile'), + menu.MenuItem( + 'List Documents on Site', + value='/site/docs/list'), + menu.MenuItem( + 'Create a new Site Document', + value='/site/docs/edit'), ] ) ),