Add nested menu items for details of use and add placeholder requests screens
This commit is contained in:
@@ -2,9 +2,21 @@ from atst.handler import BaseHandler
|
||||
|
||||
class Request(BaseHandler):
|
||||
screens = [
|
||||
{ 'title' : 'Application Details', },
|
||||
{ 'title' : 'Computation', },
|
||||
{ 'title' : 'Storage', }
|
||||
{ 'title' : 'Details of Use',
|
||||
'subitems' : [
|
||||
{'title' : 'Application Details',
|
||||
'id' : 'application-details'},
|
||||
{'title' : 'Computation',
|
||||
'id' : 'computation' },
|
||||
{'title' : 'Storage',
|
||||
'id' : 'storage' },
|
||||
{'title' : 'Usage',
|
||||
'id' : 'usage' },
|
||||
]},
|
||||
{ 'title' : 'Organizational Info', },
|
||||
{ 'title' : 'Funding/Contracting', },
|
||||
{ 'title' : 'Readiness Survey', },
|
||||
{ 'title' : 'Review & Submit', }
|
||||
]
|
||||
|
||||
def initialize(self, page):
|
||||
|
||||
Reference in New Issue
Block a user