Jan Mühlnikel
commited on
Commit
·
48e7abc
1
Parent(s):
0c31d46
COuntry Column in Result Table now full country name
Browse files
modules/multimatch_result_table.py
CHANGED
@@ -52,7 +52,7 @@ def show_multi_table(p1_df, p2_df):
|
|
52 |
#AgGrid(match_df)
|
53 |
|
54 |
st.dataframe(
|
55 |
-
match_df[["iati_id", "title_main", "orga_abbreviation", "client", "description_main", "
|
56 |
use_container_width = True,
|
57 |
height = 35 + 35 * len(match_df),
|
58 |
column_config={
|
@@ -86,7 +86,7 @@ def show_multi_table(p1_df, p2_df):
|
|
86 |
disabled=True,
|
87 |
width="large"
|
88 |
),
|
89 |
-
"
|
90 |
"Country",
|
91 |
help="Country of project",
|
92 |
disabled=True,
|
|
|
52 |
#AgGrid(match_df)
|
53 |
|
54 |
st.dataframe(
|
55 |
+
match_df[["iati_id", "title_main", "orga_abbreviation", "client", "description_main", "country_name", "flag", "sdg_list", "crs_3_code_list", "crs_5_code_list"]],
|
56 |
use_container_width = True,
|
57 |
height = 35 + 35 * len(match_df),
|
58 |
column_config={
|
|
|
86 |
disabled=True,
|
87 |
width="large"
|
88 |
),
|
89 |
+
"country_name": st.column_config.TextColumn(
|
90 |
"Country",
|
91 |
help="Country of project",
|
92 |
disabled=True,
|