<?php if (is_admin()) { //My Line?>
<tr>
<th><label><?php _e('Assign Pack', APP_TD); ?></label></th>
<td>
<select name="give_job_pack" class="assign-plan"><option value=""><?php _e('Choose a Pack...', APP_TD); ?></option>
<?php
$plans = jr_get_available_plans();
if ( sizeof($plans) > 0 ) {
foreach ( $plans as $key => $plan ) {
echo '<option value="'.$plan['post_data']->ID.'">'.$plan['post_data']->post_title.'</option>';
}
}
?>
</select>
</td>
</tr>
<?php } ?>
<?php endif; ?>
<?php if (is_admin()) { //My Line?>
<tr>
<th><label><?php _e( 'Reset Usage', APP_TD ); ?></label></th>
<td>
<input type="checkbox" name="reset_job_plans_usage" value="1">
<?php echo html( 'em', __( 'This option resets the plans usage for this user. All \'Job Plans\' will be available for selection until the usage limit is reached again.', APP_TD ) ); ?>
</td>
</tr>
<?php } ?>
There are currently 1 users browsing this thread. (0 members and 1 guests)