@Alexchees
Mine is as follow:
<p class="options">
<strong><a href="<?php echo osc_item_edit_url(); ?>"><?php _e('Edit', 'Modern'); ?></a></strong>
<span>|</span>
<a class="delete" onclick="javascript:return confirm('<?php _e('This action can not be undone. Are you sure you want to continue?', 'Modern'); ?>')" href="<?php echo osc_item_delete_url();?>" ><?php _e('Delete', 'Modern'); ?></a>
<?php if(osc_item_is_inactive()) {?>
<span>|</span>
<a href="<?php echo osc_item_activate_url();?>" ><?php _e('Activate', 'Modern'); ?></a>
<?php } ?>
<?php if (function_exists('republish_url')) {echo republish_url();} ?>
</p>
Please note, you should change 'Modern' with your theme name
Hope this helps