Hi there,
I have created an HTML table card that displays images (not links to the images but the actual images themselves). I've used a case statement because the dashboard the HTML table card is on gets filtered by category.
Here is the generalized beast mode I made to display the images:
CASE
WHEN 'Category' = 'C1'
THEN CONCAT(''
<IMG src="
IMAGE_LOCATION_URL_FOR_C1" style="max-width: 300px; max-height: 269px;">
'')
WHEN 'Category' = 'C12'
THEN CONCAT(''
<IMG src="
IMAGE_LOCATION_URL_FOR_C2" style="max-width: 300px; max-height: 269px;">
'')
END
Is it possible to do something similar with video?