bluenevus commited on
Commit
f6aa030
·
1 Parent(s): 26d5a9f

Update app.py via AI Editor

Browse files
Files changed (1) hide show
  1. app.py +17 -3
app.py CHANGED
@@ -589,6 +589,20 @@ app.layout = dbc.Container([
589
  ),
590
  ])
591
  ], className="mb-3"),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
592
  ], style={'minWidth': '260px', 'width':'30vw','maxWidth':'30vw'}, width=3),
593
 
594
  dbc.Col([
@@ -614,9 +628,9 @@ app.layout = dbc.Container([
614
  id="output-preview-container",
615
  children=html.Div(id="output-data-upload"),
616
  style={
617
- "height": "700px", # Increased height for ~15 lines
618
- "overflowY": "auto", # Adds vertical scrollbar when content exceeds height
619
- "overflowX": "auto", # Adds horizontal scrollbar if needed
620
  }
621
  ),
622
  style={"textAlign": "center"}
 
589
  ),
590
  ])
591
  ], className="mb-3"),
592
+ dbc.Card([
593
+ dbc.CardHeader(html.H5("Instructions")),
594
+ dbc.CardBody([
595
+ html.Ol([
596
+ html.Li("Start by uploading a RFP, SOW, PWS or RFI"),
597
+ html.Li("Next click Shred to get an spreadsheet of the key requirements"),
598
+ html.Li("Generate a proposal. You can have it generate the proposal from wither the uploaded RFP, SOW, PWS or RFI or Shred. select that in the dropdown list under Documents. If you don't already have a proposal document, just upload it under proposals for the next steps"),
599
+ html.Li("Check compliance against a document you select in the Proposal section. Chose the document you want to evaluate by selecting it on the dropdown list. You must also choose what you want to evaluate it against, from the Documents list like the PWS or the Shred"),
600
+ html.Li("Recover a document by selecting a document from the proposal and like PWS, shred or compliance check (recommended) under Documents. This will recover any sections that to fix based on the document selected like pws, shred or compliance"),
601
+ html.Li("Simulate a virtual board evaluation, which you must select the PWS under documents and the document under proposals you want to evaluate. That will give you representative board ratings. If you want to recover based on these board ratings, select the document under proposal and the board evaluation document under Documents and then click recover it will recover the problem areas based on the findings."),
602
+ html.Li("Generate an LOE by selecting the document like PWS, and click LOE, you will get an estimated LOE."),
603
+ ], style={"wordWrap": "break-word"})
604
+ ])
605
+ ], className="mb-3"),
606
  ], style={'minWidth': '260px', 'width':'30vw','maxWidth':'30vw'}, width=3),
607
 
608
  dbc.Col([
 
628
  id="output-preview-container",
629
  children=html.Div(id="output-data-upload"),
630
  style={
631
+ "height": "700px",
632
+ "overflowY": "auto",
633
+ "overflowX": "auto",
634
  }
635
  ),
636
  style={"textAlign": "center"}