This is my routes.py:

routers = dict(

    # base router
    BASE = dict(
        default_application = 'init',
        applications = 'ALL',
    ),

    # 'admin' application router
    admin = dict(
        controllers = [],   # don't remove controller names from admin URLs
        map_hyphen = False, # don't map hyphens to underscores
    ),
)

Reply via email to