diff --git a/src/wp-admin/network/site-info.php b/src/wp-admin/network/site-info.php
index 61fea29..5f88e92 100644
--- a/src/wp-admin/network/site-info.php
+++ b/src/wp-admin/network/site-info.php
@@ -129,6 +129,8 @@ $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(go to dashboard)' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
@@ -137,7 +139,7 @@ require( ABSPATH . 'wp-admin/admin-header.php' );
 ?>
 
 <div class="wrap">
-<h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
+<h1 id="edit-site"><?php echo $title_site_url_linked ?> <small><?php echo $dashboard ?></small></h1>
 <h3 class="nav-tab-wrapper">
 <?php
 $tabs = array(
diff --git a/src/wp-admin/network/site-settings.php b/src/wp-admin/network/site-settings.php
index 31980ee..9e196c6 100644
--- a/src/wp-admin/network/site-settings.php
+++ b/src/wp-admin/network/site-settings.php
@@ -79,6 +79,8 @@ $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(go to dashboard)' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
@@ -87,7 +89,7 @@ require( ABSPATH . 'wp-admin/admin-header.php' );
 ?>
 
 <div class="wrap">
-<h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
+<h1 id="edit-site"><?php echo $title_site_url_linked ?> <small><?php echo $dashboard ?></small></h1>
 <h3 class="nav-tab-wrapper">
 <?php
 $tabs = array(
diff --git a/src/wp-admin/network/site-themes.php b/src/wp-admin/network/site-themes.php
index 0042601..37e5ea1 100644
--- a/src/wp-admin/network/site-themes.php
+++ b/src/wp-admin/network/site-themes.php
@@ -133,13 +133,15 @@ $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(go to dashboard)' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
 require( ABSPATH . 'wp-admin/admin-header.php' ); ?>
 
 <div class="wrap">
-<h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
+<h1 id="edit-site"><?php echo $title_site_url_linked ?> <small><?php echo $dashboard ?></small></h1>
 <h3 class="nav-tab-wrapper">
 <?php
 $tabs = array(
diff --git a/src/wp-admin/network/site-users.php b/src/wp-admin/network/site-users.php
index f290565..44c5b8a 100644
--- a/src/wp-admin/network/site-users.php
+++ b/src/wp-admin/network/site-users.php
@@ -161,6 +161,8 @@ $site_url_no_http = preg_replace( '#^http(s)?://#', '', get_blogaddress_by_id( $
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a href="' . get_admin_url( $id ) . '">' . __( '(go to dashboard)' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
@@ -182,7 +184,7 @@ var current_site_id = <?php echo $id; ?>;
 
 
 <div class="wrap">
-<h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
+<h1 id="edit-site"><?php echo $title_site_url_linked ?> <small><?php echo $dashboard ?></small></h1>
 <h3 class="nav-tab-wrapper">
 <?php
 $tabs = array(
-- 
2.2.2

