Changes between Version 73 and Version 74 of DeveloperGuidelinesS3Framework


Ignore:
Timestamp:
03/04/12 18:48:53 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelinesS3Framework

    v73 v74  
    2323if not deployment_settings.has_module(module):
    2424    raise HTTP(404, body="Module disabled: %s" % module)
    25 
    26 # Options Menu (available in all Functions)
    27 shn_menu(module)
    2825}}}
    2926
    30 menu is defined in {{{models/01_menu.py}}}:
    31 module_menu = [
    32     [T("Home"), False, URL(f="index")], [
    33         [T("Resources"), False, URL(f="resource")],
    34         [T("List"), False, URL(f="person")],
    35         [T("Add"), False, URL(f="resource", args="create")],
    36         [T("Search People"), False, URL(f="resource", args="search")]
    37     ]]
    38 ]
     27== Menus ==
     28Normal menus are defined in {{{modules/eden/menus.py}}}
     29
     30Custom menus are defined in {{{models/01_menu.py}}}
    3931=== Conflict Detection ===
    4032Sahana is a multi-user system so there is a potential for multiple users to be editing the same record at once.[[BR]]