diff --git a/reviewboard/datagrids/builtin_items.py b/reviewboard/datagrids/builtin_items.py
index 11a9c277777b70fbfd3974c3a8dd9ea1424fc0e6..b680117c038df14af165f503e175d4dc130c57a5 100644
--- a/reviewboard/datagrids/builtin_items.py
+++ b/reviewboard/datagrids/builtin_items.py
@@ -6,6 +6,31 @@ from reviewboard.datagrids.sidebar import (BaseSidebarItem,
                                            BaseSidebarSection, SidebarNavItem)
 
 
+"""added here make sure to remove @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"""
+class MyReviewsSection(BaseSidebarSection):
+    """The "My Reviews" section on the Dashboard sidebar.
+
+    This displays two links: "All" and "Open".
+
+    "All" links to a Dashboard view showing all outgoing review requests
+    made by the user, including those that are closed.
+
+    "Open" links to a Dashboard view showing only open outgoing review
+    requests made by the user.
+    """
+
+    label = _('My Reviews')
+
+    def get_items(self):
+        """Yield each of the items within this section."""
+        site_profile = self.datagrid.site_profile
+
+        yield SidebarNavItem(self,
+                             label=_('All'),
+                             view_id='mine',
+                             count=site_profile.total_outgoing_request_count)
+
+
 class OutgoingSection(BaseSidebarSection):
     """The "Outgoing" section on the Dashboard sidebar.
 
diff --git a/reviewboard/datagrids/grids.py b/reviewboard/datagrids/grids.py
index 00274457a70865938b5b20266c0e9f1dc6ca06a8..6f9f1a596c7b3b05c847eae12bd2611043b941d8 100644
--- a/reviewboard/datagrids/grids.py
+++ b/reviewboard/datagrids/grids.py
@@ -37,7 +37,9 @@ from reviewboard.datagrids.columns import (BugsColumn,
                                            ToMeColumn,
                                            UsernameColumn)
 from reviewboard.datagrids.sidebar import Sidebar, DataGridSidebarMixin
+"""added here make sure to remove @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"""
 from reviewboard.datagrids.builtin_items import (IncomingSection,
+                                                 MyReviewsSection, 
                                                  OutgoingSection,
                                                  UserGroupsItem,
                                                  UserProfileItem)
@@ -286,6 +288,7 @@ class DashboardDataGrid(DataGridSidebarMixin, ReviewRequestDataGrid):
         [
             OutgoingSection,
             IncomingSection,
+            MyReviewsSection,
         ],
         default_view_id='incoming')
 
