Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.99
diff -u -p -r1.99 content_types.inc
--- modules/node/content_types.inc	3 Nov 2009 05:32:07 -0000	1.99
+++ modules/node/content_types.inc	7 Nov 2009 05:28:22 -0000
@@ -12,7 +12,7 @@
 function node_overview_types() {
   $types = node_type_get_types();
   $names = node_type_get_names();
-  $header = array(t('Name'), array('data' => t('Operations'), 'colspan' => '2'));
+  $header = array(t('Name'), array('data' => t('Operations'), 'colspan' => '4'));
   $rows = array();
 
   foreach ($names as $key => $name) {
@@ -30,6 +30,13 @@ function node_overview_types() {
       else {
         $row[] = array('data' => '');
       }
+
+      // Manage fields.
+      $row[] = array('data' => l(t('manage fields'), 'admin/structure/types/manage/' . $type_url_str . '/fields'));
+
+      // Display fields.
+      $row[] = array('data' => l(t('manage display'), 'admin/structure/types/manage/' . $type_url_str . '/display'));
+
       $rows[] = $row;
     }
   }
