Skip to content

Commit 38f53d3

Browse files
committed
fix page navigation and update start page
1 parent 96d947e commit 38f53d3

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

pages/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
distance_page = st.Page("calculate_distance.py", title="Calculate distance")
99

1010

11-
pg = st.navigation([help_page, PE_page, distance_page])
11+
pg = st.navigation([help_page, PE_page, menzies_page, distance_page])
1212
pg.run()

pages/get_started.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,15 @@
1818
st.image("ColumnNames.png")
1919

2020
st.subheader("Step 3", divider=True)
21-
st.markdown('''This applies to the **Sage downloads** sheet only.
21+
st.markdown('''The follow steps apply to the **Sage downloads** sheet only.
2222
2323
Remove the extra rows at the top of the sheet, so that the table columns is the first bit of data read by the calculator.''')
2424
st.image("SageTableHeadersBefore.png", caption="Before")
2525
st.write("Please leave the first row of the sheet empty, as shown below.")
26-
st.image("SageTableHeadersAfter.png", caption="After")
26+
st.image("SageTableHeadersAfter.png", caption="After")
27+
28+
st.subheader("Step 4", divider=True)
29+
st.write("Merge the hotel/accomodation tables with the travel table (the one you just removed the headers for).")
30+
st.image("SageTablesSeparate.png", caption="Before")
31+
st.write("Remove the totals and header, so that the sheet becomes a single table.")
32+
st.image("SageTablesMerged.png", caption="After")

0 commit comments

Comments
 (0)