web2py.transcription/models/menu.py

17 lines
463 B
Python
Raw Normal View History

2021-10-01 10:29:16 +02:00
# -*- coding: utf-8 -*-
global response, T, URL
response.title = 'Transcribe'
response.subtitle = 'Transcribe audio and video'
response.meta.author = 'Markus Schmidt'
response.meta.description = 'describe your app'
response.meta.keywords = 'Application for transcribing media data'
response.logourl = URL('default', 'index')
2021-10-01 10:29:16 +02:00
response.menu = [
(T('Home'), False, URL('default', 'index'), []),
(T('Manage media'), False, URL('default', 'manage'), [])
2021-10-01 10:29:16 +02:00
]