21 lines
650 B
PHP
21 lines
650 B
PHP
<?php
|
|
/**
|
|
* Admin tax table "meta" (thead or tfoot).
|
|
*
|
|
* @since 3.0
|
|
*
|
|
* @package EDD
|
|
* @category Template
|
|
* @author Easy Digital Downloads
|
|
* @version 1.0.0
|
|
*/
|
|
?>
|
|
|
|
<tr>
|
|
<td class="edd-tax-rates-table-checkbox check-column"><input type="checkbox" /></td>
|
|
<th class="edd-tax-rates-table-country"><?php esc_html_e( 'Country', 'easy-digital-downloads' ); ?></th>
|
|
<th><?php esc_html_e( 'Region', 'easy-digital-downloads' ); ?></th>
|
|
<th class="edd-tax-rates-table-rate"><?php esc_html_e( 'Rate', 'easy-digital-downloads' ); ?></th>
|
|
<th class="edd-tax-rates-table-actions"><?php esc_html_e( 'Actions', 'easy-digital-downloads' ); ?></th>
|
|
</tr>
|