Index: wp-includes/media.php
===================================================================
--- wp-includes/media.php	(revision 22782)
+++ wp-includes/media.php	(working copy)
@@ -1265,6 +1265,8 @@
 		'subtype'     => $subtype,
 		'icon'        => wp_mime_type_icon( $attachment->ID ),
 		'dateFormatted' => mysql2date( get_option('date_format'), $attachment->post_date ),
+		'deleteLink'	=> wp_nonce_url( "post.php?action=delete&amp;post=$attachment->ID", 'delete-post_' . $attachment->ID ),
+		'editLink'	=> get_edit_post_link( $attachment->ID, true ),
 	);
 
 	if ( $meta && 'image' === $type ) {
@@ -1501,6 +1503,12 @@
 				<# if ( 'image' === data.type && ! data.uploading ) { #>
 					<div class="dimensions">{{ data.width }} &times; {{ data.height }}</div>
 				<# } #>
+				<div class="edit-link">
+					<a href="{{ data.editLink }}" target="_blank"><?php _e( 'Edit' ) ?></a>
+				</div>
+				<div class="delete-link">
+					<a href="{{ data.deleteLink }}" onclick="return showNotice.warn();"><?php _e( 'Delete Permanently' ) ?></a>
+				</div>
 			</div>
 			<div class="compat-meta">
 				<# if ( data.compat && data.compat.meta ) { #>
