Remove all icons from template card Kanban

How I can remove all icons from the Kanban card? I have defined a card without any icon, but the edit (Pencil) Icon is still there.

webix.type(webix.ui.kanbanlist,{
    name: "runtimes",
    templateBody: function(obj){
        var html = "";
        if(obj.url!==null && obj.url!==""){
            html += "<div title='"+obj.text+"'><a href="+obj.url+" target=\"_blank\"><strong>Case ID:</strong> "+obj.referenz+"</a></div>";
        }else{
            html += "<div title='"+obj.text+"'><strong>Case ID:</strong> "+obj.referenz+"</div>";
        }
        return html;
    }

});

Hi,

You can add an empty array to the icons as
https://snippet.webix.com/jqogi966

Also, you can turn to templateFooter as
https://snippet.webix.com/dhn2jgc6