Added changelog view under the about main menu

This commit is contained in:
Roberto Rosario
2011-08-06 21:16:36 -04:00
parent f81f480f32
commit 0584244663
4 changed files with 46 additions and 0 deletions
+6
View File
@@ -20,6 +20,12 @@ current_user_edit = {'text': _(u'edit details'), 'view': 'current_user_edit', 'f
register_links(['current_user_details', 'current_user_edit', 'password_change_view'], [current_user_details, current_user_edit, password_change_view], menu_name='secondary_menu')
about = {'text': _('about'), 'view': 'about', 'famfam': 'information'}
changelog = {'text': _('changelog'), 'view': 'changelog', 'famfam': 'book_open'}
register_links(['about', 'changelog'], [about, changelog], menu_name='secondary_menu')
if common_settings.AUTO_CREATE_ADMIN:
# From https://github.com/lambdalisue/django-qwert/blob/master/qwert/autoscript/__init__.py
# From http://stackoverflow.com/questions/1466827/ --