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.
--- 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'),
]
)
),