Add nested menu items for details of use and add placeholder requests screens

This commit is contained in:
Luis Cielak
2018-05-29 15:19:46 -04:00
parent 73d88c6aad
commit 66ff223204
5 changed files with 50 additions and 34 deletions

View File

@@ -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):