2021-10-01 10:29:16 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2021-10-21 16:07:54 +02:00
|
|
|
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 = [
|
2021-10-21 16:07:54 +02:00
|
|
|
(T('Home'), False, URL('default', 'index'), []),
|
|
|
|
(T('Manage media'), False, URL('default', 'manage'), [])
|
2021-10-01 10:29:16 +02:00
|
|
|
]
|
|
|
|
|