index.php
31 lines
| 1 | <style> |
| 2 | |
| 3 | .wp-list-table { |
| 4 | table-layout: auto !important; |
| 5 | } |
| 6 | </style> |
| 7 | <div class="wrap"> |
| 8 | |
| 9 | <?php |
| 10 | \SureCart::render( 'layouts/partials/admin-index-styles' ); |
| 11 | ?> |
| 12 | |
| 13 | <div id="app"></div> |
| 14 | |
| 15 | <?php |
| 16 | \SureCart::render( |
| 17 | 'layouts/partials/admin-index-header', |
| 18 | [ |
| 19 | 'title' => __( 'Subscriptions', 'surecart' ), |
| 20 | ] |
| 21 | ); |
| 22 | ?> |
| 23 | |
| 24 | <?php $table->search_form( __( 'Search Subscriptions', 'surecart' ), 'sc-search-subscriptions' ); ?> |
| 25 | <form id="posts-filter" method="get"> |
| 26 | <?php $table->views(); ?> |
| 27 | <?php $table->display(); ?> |
| 28 | <div id="ajax-response"></div> |
| 29 | </form> |
| 30 | </div> |
| 31 |