';
echo '
Stellenangebot bearbeiten
';
echo '
← Zurück zur Übersicht
';
echo do_shortcode( "[formidable id={$form_id}]" );
echo '
';
// Don't show listings table when editing
return;
}
}
// Show normal dashboard (submission form + listings) if not editing
```
AVOID displaying both edit form and listings simultaneously - show one or the other.
WHY: Confusing UX, wastes screen space, makes page too long.