Skip to content

Commit 5fbfb77

Browse files
authored
Merge pull request #475 from CodeForPhilly/moved_guidance
Remove guidance sections
2 parents cb52025 + cedc630 commit 5fbfb77

File tree

3 files changed

+3
-19
lines changed

3 files changed

+3
-19
lines changed

src/app.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55

66
from penn_chime.presentation import (
77
display_download_link,
8+
display_footer,
89
display_header,
910
display_sidebar,
1011
hide_menu_style,
11-
write_definitions,
12-
write_footer,
1312
)
1413
from penn_chime.settings import get_defaults
1514
from penn_chime.models import SimSirModel
@@ -93,5 +92,4 @@
9392
labels=p.labels)
9493
st.table(table_df)
9594

96-
write_definitions(st)
97-
write_footer(st)
95+
display_footer(st)

src/chime_dash/app/templates/en/footer.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
## Guidance on Selecting Inputs
2-
3-
**This information has been moved to the [User Documentation](https://code-for-philly.gitbook.io/chime/what-is-chime/parameters#guidance-on-selecting-inputs)**
4-
51
## References & Acknowledgements
62

73
* AHA Webinar, Feb 26, James Lawler, MD, an associate professor University of Nebraska Medical Center, What Healthcare Leaders Need To Know: Preparing for the COVID-19

src/penn_chime/presentation.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -369,17 +369,7 @@ def display_sidebar(st, d: Parameters) -> Parameters:
369369
)
370370

371371

372-
def write_definitions(st):
373-
st.subheader("Guidance on Selecting Inputs")
374-
st.markdown(
375-
"""**This information has been moved to the
376-
[User Documentation]({docs_url}/what-is-chime/parameters)**""".format(
377-
docs_url=DOCS_URL
378-
)
379-
)
380-
381-
382-
def write_footer(st):
372+
def display_footer(st):
383373
st.subheader("References & Acknowledgements")
384374
st.markdown(
385375
"""* AHA Webinar, Feb 26, James Lawler, MD, an associate professor University of Nebraska Medical Center, What Healthcare Leaders Need To Know: Preparing for the COVID-19

0 commit comments

Comments
 (0)