diff --git a/app/processing.py b/app/processing.py index 29f0f8a..088c2e1 100644 --- a/app/processing.py +++ b/app/processing.py @@ -3,7 +3,7 @@ from app.preprocessing import create_dataframe, create_map def create_table(df) -> str: df.fillna(value=0, inplace=True) - table = df.to_html(classes=["table-striped", "table-hover"]) + table = df.to_html(classes=["table-striped", "table-sm", "table-responsive"]) return table diff --git a/app/templates/visualization.html b/app/templates/visualization.html index 81fa254..4087590 100644 --- a/app/templates/visualization.html +++ b/app/templates/visualization.html @@ -3,9 +3,13 @@ {% block app_content %}

Dataset visualization

- - -{{ table|safe }} -
+
+
+ {{ table|safe }} +
+
+ +
+

Back

{% endblock %}