| 1 |
<div class="wdk-field-edit"> |
| 2 |
<p class="alert alert-info"><?php echo __('This is code editing so may cause trouble if you put error in code','wpdirectorykit'); ?></p> |
| 3 |
</div> |
| 4 |
<table class="wp-list-table widefat striped table-view-list pages"> |
| 5 |
<thead> |
| 6 |
<tr> |
| 7 |
<th>#</th> |
| 8 |
<th><?php echo esc_html__('Template', 'wdk-bookings'); ?></th> |
| 9 |
<th><?php echo esc_html__('Description', 'wdk-bookings'); ?></th> |
| 10 |
<th class="actions_column"><?php echo esc_html__('Actions', 'wdk-bookings'); ?></th> |
| 11 |
</tr> |
| 12 |
</thead> |
| 13 |
<tbody> |
| 14 |
<?php foreach ($mailtemplates as $key=>$template) : ?> |
| 15 |
<tr> |
| 16 |
<td> |
| 17 |
<?php echo ($key + 1); ?> |
| 18 |
</td> |
| 19 |
<td> |
| 20 |
<?php echo $template['template']; ?> |
| 21 |
</td> |
| 22 |
<td> |
| 23 |
<?php echo $template['description']; ?> |
| 24 |
</td> |
| 25 |
<td class="actions_column"> |
| 26 |
<a target="_blank" href="<?php echo esc_url(get_admin_url() . "admin.php?page=wdk_settings&function=mailtemplate&file=".$template['template'].""); ?>"><span class="dashicons dashicons-edit"></span></a> |
| 27 |
</td> |
| 28 |
</tr> |
| 29 |
<?php endforeach; ?> |
| 30 |
</tbody> |
| 31 |
<tfoot> |
| 32 |
<tr> |
| 33 |
<th>#</th> |
| 34 |
<th><?php echo esc_html__('Template', 'wdk-bookings'); ?></th> |
| 35 |
<th><?php echo esc_html__('Description', 'wdk-bookings'); ?></th> |
| 36 |
<th class="actions_column"><?php echo esc_html__('Actions', 'wdk-bookings'); ?></th> |
| 37 |
</tr> |
| 38 |
</tfoot> |
| 39 |
</table> |