Update modules/ui/user_page.py
Browse files- modules/ui/user_page.py +4 -0
modules/ui/user_page.py
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import logging
|
| 3 |
from datetime import datetime, timezone
|
|
@@ -10,6 +12,7 @@ logger = logging.getLogger(__name__)
|
|
| 10 |
#Importaciones locales.
|
| 11 |
|
| 12 |
from ..utils.widget_utils import generate_unique_key
|
|
|
|
| 13 |
from session_state import initialize_session_state, logout
|
| 14 |
|
| 15 |
from translations import get_translations
|
|
@@ -21,6 +24,7 @@ from ..admin.admin_ui import admin_page
|
|
| 21 |
from ..chatbot import display_sidebar_chat
|
| 22 |
|
| 23 |
# Students activities
|
|
|
|
| 24 |
from ..studentact.student_activities_v2 import display_student_activities
|
| 25 |
|
| 26 |
#from ..studentact.current_situation_interface import display_current_situation_interface
|
|
|
|
| 1 |
+
# modules/ui/user_page.py
|
| 2 |
+
|
| 3 |
import streamlit as st
|
| 4 |
import logging
|
| 5 |
from datetime import datetime, timezone
|
|
|
|
| 12 |
#Importaciones locales.
|
| 13 |
|
| 14 |
from ..utils.widget_utils import generate_unique_key
|
| 15 |
+
|
| 16 |
from session_state import initialize_session_state, logout
|
| 17 |
|
| 18 |
from translations import get_translations
|
|
|
|
| 24 |
from ..chatbot import display_sidebar_chat
|
| 25 |
|
| 26 |
# Students activities
|
| 27 |
+
|
| 28 |
from ..studentact.student_activities_v2 import display_student_activities
|
| 29 |
|
| 30 |
#from ..studentact.current_situation_interface import display_current_situation_interface
|