Update pages/reader.py
Browse files- pages/reader.py +18 -5
pages/reader.py
CHANGED
|
@@ -49,7 +49,12 @@ if not filtered_df.empty:
|
|
| 49 |
abstracten = format_html(row.get("Abstract (en)", ""))
|
| 50 |
abstractid = format_html(row.get("Abstract (id)", ""))
|
| 51 |
keywords = format_html(row.get("Keywords", ""))
|
| 52 |
-
affiliation = format_html(row.get("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
|
| 54 |
|
| 55 |
|
|
@@ -104,15 +109,23 @@ if not filtered_df.empty:
|
|
| 104 |
<div class="section-meta">{abstractid}</div>
|
| 105 |
<div class="article-author">Keywords: {keywords}</div>
|
| 106 |
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
<div class="section-title">Introduction</div>
|
| 112 |
<div class="section-content">{intro}</div>
|
| 113 |
|
| 114 |
<div class="section-title">Method</div>
|
| 115 |
<div class="section-content">{method}</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
"""
|
| 117 |
|
| 118 |
st.markdown(html_output, unsafe_allow_html=True)
|
|
|
|
| 49 |
abstracten = format_html(row.get("Abstract (en)", ""))
|
| 50 |
abstractid = format_html(row.get("Abstract (id)", ""))
|
| 51 |
keywords = format_html(row.get("Keywords", ""))
|
| 52 |
+
affiliation = format_html(row.get("Institution", ""))
|
| 53 |
+
result = format_html(row.get("Result", ""))
|
| 54 |
+
discussion = format_html(row.get("Discussion", ""))
|
| 55 |
+
rnd = format_html(row.get("Result & Discussion", ""))
|
| 56 |
+
conclusion = format_html(row.get("Conclusion", ""))
|
| 57 |
+
|
| 58 |
|
| 59 |
|
| 60 |
|
|
|
|
| 109 |
<div class="section-meta">{abstractid}</div>
|
| 110 |
<div class="article-author">Keywords: {keywords}</div>
|
| 111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
<div class="section-title">Introduction</div>
|
| 113 |
<div class="section-content">{intro}</div>
|
| 114 |
|
| 115 |
<div class="section-title">Method</div>
|
| 116 |
<div class="section-content">{method}</div>
|
| 117 |
+
|
| 118 |
+
<div class="section-title">Result</div>
|
| 119 |
+
<div class="section-content">{result}</div>
|
| 120 |
+
|
| 121 |
+
<div class="section-title">Discussion</div>
|
| 122 |
+
<div class="section-content">{discussion}</div>
|
| 123 |
+
|
| 124 |
+
<div class="section-title">Result & Discussion</div>
|
| 125 |
+
<div class="section-content">{rnd}</div>
|
| 126 |
+
|
| 127 |
+
<div class="section-title">Conclusion</div>
|
| 128 |
+
<div class="section-content">{conclusion}</div>
|
| 129 |
"""
|
| 130 |
|
| 131 |
st.markdown(html_output, unsafe_allow_html=True)
|