The only way to see the indexes that apply to a specific table at the moment is to run the following SQL manually:
select * from sqlite_master where type = 'index' and tbl_name=?
For example:

It would be good if this list of indexes was displayed in a neater way on the table page.