CodeIgniter_Gforms/application/views/forms/myforms.php

36 lines
1.3 KiB
PHP
Raw Normal View History

2024-07-14 21:04:04 +00:00
<div style="margin: 0 10%;">
<h1>My Forms</h1>
<table>
<thead>
<tr>
<th>Form Title</th>
<th>Published</th>
2024-07-14 21:04:04 +00:00
<th>Created At</th>
<th>Response Links</th>
2024-07-14 21:04:04 +00:00
</tr>
</thead>
<tbody>
<?php if (!empty($forms)) : ?>
<?php foreach ($forms as $form) : ?>
<tr>
<td><a href="<?= base_url() ?>forms/preview/<?=$form->form_id?> "><?= htmlspecialchars($form->title, ENT_QUOTES, 'UTF-8') ?></a></td>
<td><?= ($form->is_published == 0)?'No':'Yes'?></td>
2024-07-14 21:04:04 +00:00
<td><?php echo date('Y-m-d H:i:s', strtotime($form->created_at)); ?></td>
2024-07-16 03:00:23 +00:00
<td>
<?php if (isset($response_link) && $form->is_published == 1): ?>
<a href="<?= $response_link ?>">Response link</a>
<?php else: ?>
Not Published
<?php endif; ?>
</td>
2024-07-14 21:04:04 +00:00
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr>
<td colspan="2">No forms found.</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>