Spaces:
Sleeping
Sleeping
update style
Browse files- clients.py +11 -10
clients.py
CHANGED
@@ -442,16 +442,17 @@ def display_analytics():
|
|
442 |
hook_df = calculate_percentage_change(hook_df)
|
443 |
|
444 |
# Display dataframes side by side
|
445 |
-
col1, col2, col3 = st.columns(3)
|
446 |
|
447 |
-
with col1:
|
448 |
-
|
449 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
|
451 |
-
with col2:
|
452 |
-
st.html('<h4 class="hero-subtitle">Re-engagement Emails</h4>')
|
453 |
-
st.dataframe(rengagement_df)
|
454 |
|
455 |
-
with col3:
|
456 |
-
st.html('<h4 class="hero-subtitle">Re-engagement Hooks "Hook2Lead"</h4>')
|
457 |
-
st.dataframe(hook_df)
|
|
|
442 |
hook_df = calculate_percentage_change(hook_df)
|
443 |
|
444 |
# Display dataframes side by side
|
445 |
+
#col1, col2, col3 = st.columns(3)
|
446 |
|
447 |
+
#with col1:
|
448 |
+
st.html('<h4 class="hero-subtitle">Cold Emails</h4>')
|
449 |
+
st.dataframe(cold_df)
|
450 |
+
#with col2:
|
451 |
+
st.html('<h4 class="hero-subtitle">Re-engagement Hooks "Hook2Lead"</h4>')
|
452 |
+
st.dataframe(hook_df)
|
453 |
+
|
454 |
+
#with col3:
|
455 |
+
st.html('<h4 class="hero-subtitle">Re-engagement Emails</h4>')
|
456 |
+
st.dataframe(rengagement_df)
|
457 |
|
|
|
|
|
|
|
458 |
|
|
|
|
|
|