diff --git uc_tracking.module uc_tracking.module
index c611952..15e9955 100644
--- uc_tracking.module
+++ uc_tracking.module
@@ -590,3 +590,38 @@ function uc_tracking_get_order_tracking_numbers($order) {
   // Output tracking number(s) as themed links
   return theme('links', $links, array('class' => ''));
 }
+
+/*******************************************************************************
+ * Hook Functions (Ubercart)
+ ******************************************************************************/
+
+/**
+ * Implementation of hook_order_pane().
+ */
+function uc_tracking_order_pane() {
+  $panes[] = array(
+    'id' => 'uc_tracking_packages',
+    'callback' => 'uc_tracking_order_pane_packages',
+    'title' => t('Tracking links'),
+    'desc' => t('Display tracking numbers of shipped packages with links to tracking page.'),
+    'class' => 'pos-left',
+    'weight' => 7,
+    'show' => array('view', 'invoice', 'customer'),
+  );
+
+  return $panes;
+}
+
+/**
+ * Shipping order pane callback.
+ *
+ * @see uc_tracking_order_pane()
+ */
+function uc_tracking_order_pane_packages($op, $arg1) {
+  switch ($op) {
+    case 'view':
+    case 'customer':
+      return uc_tracking_get_order_tracking_numbers($arg1);
+    break;
+  }
+}
