from translations.lang_mappings import UI_TRANSLATIONS def display_tables(current_tables, language=None): """Version simplifiée qui ignore le paramètre language""" if not current_tables: return None html = "" for table in current_tables: table_data = table.get('data', '') html += f"""
Source: {table.get('source', 'N/A')}, Page: {table.get('page', 'N/A')}
{table_data}