diff --git a/includes/entity_claim.admin.inc b/includes/entity_claim.admin.inc
index cf2aef9..e302ee2 100644
--- a/includes/entity_claim.admin.inc
+++ b/includes/entity_claim.admin.inc
@@ -209,8 +209,17 @@ function entity_claim_manage_bundle_settings_form($form, &$form_state, $bundle)
     '#type' => 'textfield',
     '#title' => t('Enter path to redirect after submission of claim'),
     '#default_value' => variable_get('entity_claim_' . $bundle . '_redirect', ''),
-    '#description' => t('Leave empty if you want to redirect to front page and show a status message.'),
+    '#description' => t('Leave empty if you want to redirect to front page and show a status message. This field supports <a href="https://www.drupal.org/project/token" target="_blank">tokens</a> if installed.'),
   );
 
+  if (module_exists('token')) {
+    $form['tokens'] = array(
+      '#theme' => 'token_tree',
+      '#token_types' => array('claim'),
+      '#global_types' => TRUE,
+      '#dialog' => TRUE,
+    );
+  }
+
   return system_settings_form($form);
 }
