diff --git a/password_policy.admin.inc b/password_policy.admin.inc
index 5da115b..abcfc76 100644
--- a/password_policy.admin.inc
+++ b/password_policy.admin.inc
@@ -152,7 +152,7 @@ function password_policy_admin_list($form) {
       '#markup' => theme('item_list', array('items' => _password_policy_admin_list_roles($pid))),
     );
     $form['policies'][$pid]['enabled'] = array(
-      '#type' => 'checkbox', 
+      '#type' => 'checkbox',
       '#default_value' => $row['enabled']
     );
     $form['policies'][$pid]['view'] = array(
@@ -226,7 +226,7 @@ function theme_password_policy_admin_list($variables) {
         'data' => array(
           drupal_render($form['policies'][$id]['name']),
           drupal_render($form['policies'][$id]['roles']),
-          drupal_render($form['policies'][$id]['enabled']),        
+          drupal_render($form['policies'][$id]['enabled']),
           drupal_render($form['policies'][$id]['weight']),
           drupal_render($form['policies'][$id]['view']),
           drupal_render($form['policies'][$id]['edit']),
@@ -238,10 +238,11 @@ function theme_password_policy_admin_list($variables) {
   }
   $header = array(t('Name'), t('Roles'), t('Enabled'), t('Weight'), array('data' => t('Operations'), 'colspan' => 3));
   $output = theme('table', array(
-    'header' => $header, 
-    'rows' => $rows, 
+    'header' => $header,
+    'rows' => $rows,
     'attributes' => array('id' => 'password-policy-order'),
-    'empty' => t('No policies have been created.'),
+    'empty' => t('There are currently no policies. <a href="!url">Add a new one</a>.',
+      array('!url' => url('admin/config/people/password_policy/add'))),
   ));
   $output .= drupal_render_children($form);
 
@@ -268,7 +269,7 @@ function password_policy_admin_view($policy) {
   if (!empty($policy['warning'])) {
     $rows[] = array(t('Warning'), $policy['warning']);
   }
-  
+
   foreach ($policy['policy'] as $key => $val) {
     $desc = _password_policy_constraint_description($key);
     $rows[] = array($desc['name'], $val);
@@ -502,7 +503,7 @@ function password_policy_password_change_settings() {
     '#title' => t('Force users in the following roles to change their password'),
     '#description' => t('Users who are not signed in will be required to change their password immediately upon sign in. Users who are currently signed in will be required to change their password upon their next page click, but after changing their password will be redirected back to the page they were attempting to access.'),
   );
-  
+
   $form['actions'] = array('#type' => 'actions');
   $form['actions']['submit'] = array(
     '#type' => 'submit',
