{{extend 'default.mobile/layout.html'}} {{ import os def A_info(*a,**b): b['_data-role'] = 'button' b['_data-icon'] = 'info' b['_data-theme'] = 'b' return A(*a,**b) def A_gear(*a,**b): b['_data-role'] = 'button' b['_data-icon'] = 'gear' return A(*a,**b) def A_delete(*a,**b): b['_data-role'] = 'button' b['_data-icon'] = 'delete' return A(*a,**b) def A_check(*a,**b): b['_data-role'] = 'button' b['_data-icon'] = 'check' return A(*a,**b) def all(items): return reduce(lambda a,b:a and b,items,True) def peekfile(path,file): return A_info(file.replace('\\\\','/'),_href=URL('peek', args=(app, path, file))) def editfile(path,file): return A_gear(SPAN(T('Edit')),_href=URL('edit', args=(app, path, file))) def testfile(path,file): return A_check(SPAN(T('Run tests')), _href=URL('test', args=(app, file))) def editlanguagefile(path,file): return A_gear(SPAN(T('Edit')),_href=URL('edit_language', args=(app, path, file))) def file_upload_form(location): form=FORM(T("upload file:")," ", INPUT(_type="file",_name="file")," ",T("and rename it:")," ", INPUT(_type="text",_name="filename",requires=IS_NOT_EMPTY()), INPUT(_type="hidden",_name="location",_value=location), INPUT(_type="hidden",_name="sender",_value=URL('design/'+app)), INPUT(_type="submit",_value=T("submit")),_action=URL('upload_file')) return form def file_create_form(location): form=FORM(T("create file with filename:")," ", INPUT(_type="text",_name="filename",requires=IS_NOT_EMPTY()), INPUT(_type="hidden",_name="location",_value=location), INPUT(_type="hidden",_name="sender",_value=URL('design/'+app)), INPUT(_type="submit",_value=T("submit")),_action=URL('create_file')) return form def upload_plugin_form(app): form=FORM(T("upload plugin file:")," ", INPUT(_type="file",_name="pluginfile"), INPUT(_type="submit",_value=T("submit"))) return form def deletefile(arglist): return A_delete(SPAN(T('Delete')), _href=URL('delete',args=arglist,vars=dict(sender=request.function+'/'+app))) }} {{block sectionclass}}plugin{{end}}
{{=T("There are no models")}}
{{pass}} {{for m in models:}} {{=editfile('models',m)}} {{=deletefile([app, 'models', m])}} {{=peekfile('models',m)}} {{pass}}{{=T("There are no controllers")}}
{{pass}} {{for c in controllers:}} {{=editfile('controllers',c)}} {{=deletefile([app,'controllers',c])}} {{=testfile('controllers',c)}} {{=peekfile('controllers',c)}} {{pass}}{{=T("There are no views")}}
{{pass}} {{for c in views:}} {{=peekfile('views',c)}} {{=editfile('views',c)}} {{=deletefile([app,'views',c])}} {{pass}}{{=T("There are no static files")}}
{{pass}}{{=T("There are no modules")}}
{{pass}} {{for m in modules:}} {{=peekfile('modules',m)}} {{=editfile('modules',m)}} {{if m!='__init__.py':}}{{=T("delete")}}{{pass}} {{pass}}