Upload folder via GUI - templates

This commit is contained in:
Git Manager GUI
2026-04-13 18:52:50 +02:00
parent 9514db9454
commit 77c0b0200d
5 changed files with 459 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php if(!defined('ABSPATH')) exit;
$form=get_post($view_form_id);
if(!$form){echo '<p>Formular nicht gefunden.</p>'; return;}
?>
<div class="wrap wmf-admin-wrap">
<h1 class="wmf-page-title">
Einreichungen: <?php echo esc_html($form->post_title); ?>
<a href="<?php echo esc_url(admin_url('admin.php?page=wp-multi-formular')); ?>" class="page-title-action">← Zurück</a>
</h1>
<?php WMF_Submissions_List::render($view_form_id); ?>
</div>