Add html tot CPT edit screen – no metabox

I found a solution

add_action('edit_form_advanced', 'add_to_admin_cpt');

function add_to_admin_cpt() {
    global $post;
    if ($post->post_type == 'catalog') {
        //doing my own stuff
    }
}