diff --git a/workbench_moderation.api.php b/workbench_moderation.api.php
index 4b2afc6..9c1bd1e 100644
--- a/workbench_moderation.api.php
+++ b/workbench_moderation.api.php
@@ -66,3 +66,24 @@ function hook_workbench_moderation_states_next_alter(&$states, $current_state, $
 function hook_workbench_moderation_transition($node, $previous_state, $new_state) {
   // Your code here.
 }
+
+/**
+ * Customize the table rows.
+ *
+ * @param $rows
+ *  List of content rows.
+ */
+function hook_workbench_moderation_node_history_view_alter(&$rows) {
+  foreach ($rows as $key => &$row) {
+    $published = FALSE;
+    if (in_array('published-revision', $row['class'])) {
+      $published = TRUE;
+    }
+    if ($published) {
+      $row['data']['revision'] .= ' | ' . l('Panelizer', 'node/' . arg(1) . '/panelizer');
+    }
+    else {
+      $row['data']['revision'] .= ' | ' . l('Panelizer', 'node/' . arg(1) . '/revisions/' . $row['data']['vid'] . '/panelizer');
+    }
+  }
+}
diff --git a/workbench_moderation.node.inc b/workbench_moderation.node.inc
index 408170f..6c80c7b 100644
--- a/workbench_moderation.node.inc
+++ b/workbench_moderation.node.inc
@@ -218,6 +218,8 @@ function workbench_moderation_node_history_view($node) {
   // Set the table header.
   $header = array(t('Revision'), t('Title'), t('Date'), t('Revision Actions'), t('Moderation Actions'));
 
+  drupal_alter('workbench_moderation_node_history_view', $rows);
+
   // Return properly styled output.
   return array(
     '#attached' => array(
