source: tmcsimulator/branches/LCSv1/models/menu.py @ 593

Revision 593, 768 bytes checked in by jdalbey, 6 years ago (diff)

Add branch LCSv1

Line 
1# -*- coding: utf-8 -*-
2# this file is released under public domain and you can use without limitations
3
4# ----------------------------------------------------------------------------------------------------------------------
5# this is the main application menu add/remove items as required
6# ----------------------------------------------------------------------------------------------------------------------
7
8
9response.title = request.application
10response.subtitle = 'subtitle customize me!'
11response.meta.author = 'Author'
12response.meta.description = 'describe your app'
13response.meta.keywords = 'keyword'
14response.menu = [     [ 'Home', False, URL('home') ], ['List', False, URL('list') ], ['Search', False, URL('search') ], ['Request', False, URL('submit') ] ]
Note: See TracBrowser for help on using the repository browser.