{{extend 'layout.html'}} {{ import os def app_upload_form(sender=request.function): form=FORM("upload application: ",INPUT(_type="file",_name="file"), "and rename it: ", INPUT(_type="text",_name="filename",requires=IS_NOT_EMPTY), INPUT(_type="submit")) return form def app_create_form(sender=request.function): form=FORM("create new application: ", INPUT(_type="text",_name="filename",requires=IS_NOT_EMPTY), INPUT(_type="submit")) return form }}

Installed applications


{{for a in apps:}} {{if a==request.application:}}

{{=a}}

[ {{else:}}

{{=a}}

[ uninstall | about | design | {{pass}} errors | cleanup | pack all {{if not os.access('applications/%s/compiled' % a,os.R_OK):}} | compile {{else:}} | pack compiled | remove compiled {{pass}} ]
{{pass}}
  • {{=app_create_form()}}
  • {{=app_upload_form()}}