Hi,
Thanks for the bug report
You need you edit the file "listing" of the view "view" via the menu Display->Views for your back template and change the lines:
<a href="<?php echo JRoute::_('index.php?option=com_templates&task=edit&cid[]='.$row->template.'&client='.$row->client_id); ?>">
and:
<a href="<?php echo hikashop::completeLink('view&task=edit&id='.$row->id);?>">
to:
<a href="<?php echo JRoute::_('index.php?option=com_templates&task=edit&cid[]='.strip_tags($row->template).'&client='.$row->client_id); ?>">
and:
<a href="<?php echo hikashop::completeLink('view&task=edit&id='.strip_tags($row->id));?>">
And that will fix it.