9 lines
311 B
Python
9 lines
311 B
Python
|
|
view = env['ir.ui.view'].search([('key', '=', 'theme_clicks2cart.clicks2cart_header')], limit=1)
|
|
if view:
|
|
print(f"View ID: {view.id}, Key: {view.key}, Website ID: {view.website_id.id if view.website_id else 'None'}")
|
|
print("Arch DB Content:")
|
|
print(view.arch_db)
|
|
else:
|
|
print("View not found!")
|