Index: uc_attribute.admin.inc
===================================================================
--- uc_attribute.admin.inc	(revision 1790)
+++ uc_attribute.admin.inc	(working copy)
@@ -616,10 +616,16 @@
  * @see uc_object_attributes_form()
  */
 function theme_uc_object_attributes_form($form) {
+  $output = '';
+
   if ($form['view']['#value'] == 'overview') {
     $header = array(t('Remove'), t('Name'), t('Label'), t('Default'), t('Required'), t('List position'), t('Display'));
 
     if (count(element_children($form['attributes'])) > 0) {
+      $output = "<div class='uc-attributes-add-link'>\n";
+      $output .=  t('You can add a new attribute <a href="!url">here</a>.', array('!url' => request_uri() .'/add'));
+      $output .= "\n</div>\n";
+
       foreach (element_children($form['attributes']) as $aid) {
         $row = array(
           drupal_render($form['attributes'][$aid]['remove']),
@@ -644,7 +650,7 @@
     }
 
     drupal_add_tabledrag('uc-attribute-table', 'order', 'sibling', 'uc-attribute-table-weight');
-    $output = theme('table', $header, $rows, array('id' => 'uc-attribute-table'));
+    $output .= theme('table', $header, $rows, array('id' => 'uc-attribute-table'));
   }
 
   $output .= drupal_render($form);
