diff --git a/core/modules/update/templates/update-project-status.html.twig b/core/modules/update/templates/update-project-status.html.twig
new file mode 100644
index 0000000..dbaf783
--- /dev/null
+++ b/core/modules/update/templates/update-project-status.html.twig
@@ -0,0 +1,112 @@
+{#
+/**
+ * @file
+ * Default theme implementation for the project status report.
+ *
+ * Available variables:
+ * - title: The project title.
+ * - url: The project url.
+ * - status: The project status.
+ *   - label: The project status label.
+ *   - attributes: HTML attributes for the project status.
+ *   - reason: The reason you should update the project.
+ *   - icon: The project status version indicator icon.
+ * - existing_version: The version of the installed project.
+ * - versions: The available versions of the project.
+ * - install_type: The type of project (e.g., dev).
+ * - datestamp: The date/time of a project version's release.
+ * - extras: HTML attributes and additional information about the project.
+ *   - attributes: HTML attributes for the extra item.
+ *   - label: The label for an extra item.
+ *   - data: The data about an extra item.
+ * - includes: The projects within a project.
+ * - disabled: The disabled included projects.
+ * - base_themes: The base theme declared for the project.
+ * - sub_themes: The subthemes declared for the project.
+ *
+ * @see template_preprocess_update_project_status()
+ *
+ * @ingroup themeable
+ */
+#}
+<div class="version-status">
+  {%- if status.label -%}
+    <span{{ status.attributes }}>{{ status.label }}</span>
+  {%- else -%}
+    {{ status.reason|e }}
+  {%- endif %}
+  <span class="icon">{{ status.icon }}</span>
+</div>
+
+<div class="project">
+  {%- if url -%}
+    <a href="{{ url }}">{{ title|e }}</a>
+  {%- else -%}
+    {{ title|e }}
+  {%- endif %}
+  {{ existing_version|e }}
+  {% if install_type == 'dev' and datestamp %}
+    <span class="version-date">({{ datestamp }})</span>
+  {% endif %}
+</div>
+
+{% if versions %}
+  <div class="versions">
+    {% for version in versions %}
+      {{ version }}
+    {% endfor %}
+  </div>
+{% endif %}
+
+<div class="info">
+  {% if extras %}
+    <div class="extra">
+      {% for extra in extras %}
+        <div{{ extra.attributes }}>
+          {{ extra.label|e }}: {{ extra.data }}
+        </div>
+      {% endfor %}
+    </div>
+  {% endif %}
+  <div class="includes">
+    {% set includes = includes|join(', ') %}
+    {% if disabled %}
+      {{ 'Includes:'|t }}
+      <ul>
+        <li class="first odd">
+          {% trans %}
+            Enabled: {{ includes|placeholder }}
+          {% endtrans %}
+        </li>
+        <li class="last even">
+          {% set disabled = disabled|join(', ') %}
+          {% trans %}
+            Disabled: {{ disabled|placeholder }}
+          {% endtrans %}
+        </li>
+      </ul>
+    {% else %}
+      {% trans %}
+        Includes: {{ includes|placeholder }}
+      {% endtrans %}
+    {% endif %}
+  </div>
+
+  {% if base_themes %}
+    {% set basethemes = base_themes|join(', ') %}
+    <div class="basethemes">
+      {% trans %}
+        Depends on: {{ basethemes|passthrough }}
+      {% endtrans %}
+    </div>
+  {% endif %}
+
+  {% if sub_themes %}
+    {% set subthemes = sub_themes|join(', ') %}
+    <div class="subthemes">
+      {% trans %}
+        Required by: {{ subthemes|placeholder }}
+      {% endtrans %}
+    </div>
+  {% endif %}
+</div>
diff --git a/core/modules/update/templates/update-report.html.twig b/core/modules/update/templates/update-report.html.twig
new file mode 100644
index 0000000..13ddfdf
--- /dev/null
+++ b/core/modules/update/templates/update-report.html.twig
@@ -0,0 +1,33 @@
+{#
+/**
+ * @file
+ * Default theme implementation for the project status report.
+ *
+ * Available variables:
+ * - last_checked: A flag indicating whether the site checked for updates.
+ * - time: The time the site last checked for updates.
+ * - link: A link to check for updates manually.
+ * - project_types: A list of project types.
+ *   - label: The project type label.
+ *   - table: The project status table.
+ *
+ * @see template_preprocess_update_report()
+ *
+ * @ingroup themeable
+ */
+#}
+<div class="update checked">
+  {% if last_checked %}
+    {% trans %}
+      Last checked: {{ time }} ago
+    {% endtrans %}
+  {% else %}
+    {{ 'Last checked: never'|t }}
+  {% endif %}
+  <span class="check-manually">({{ link }})</span>
+</div>
+
+{% for project_type in project_types %}
+  <h3>{{ project_type.label }}</h3>
+  {{ project_type.table }}
+{% endfor %}
diff --git a/core/modules/update/update.manager.inc b/core/modules/update/update.manager.inc
index 86872da..8f1002b 100644
--- a/core/modules/update/update.manager.inc
+++ b/core/modules/update/update.manager.inc
@@ -279,27 +279,6 @@ function update_manager_update_form($form, $form_state = array(), $context) {
 }
 
 /**
- * Returns HTML for the first page in the process of updating projects.
- *
- * @param $variables
- *   An associative array containing:
- *   - form: A render element representing the form.
- *
- * @ingroup themeable
- */
-function theme_update_manager_update_form($variables) {
-  $form = $variables['form'];
-  $last = \Drupal::state()->get('update.last_check') ?: 0;
-  $update_last_check = array(
-    '#theme' => 'update_last_check',
-    '#last' => $last,
-  );
-  $output = drupal_render($update_last_check);
-  $output .= drupal_render_children($form);
-  return $output;
-}
-
-/**
  * Form validation handler for update_manager_update_form().
  *
  * Ensures that at least one project is selected.
diff --git a/core/modules/update/update.module b/core/modules/update/update.module
index afd16a9..51afe6b 100644
--- a/core/modules/update/update.module
+++ b/core/modules/update/update.module
@@ -172,24 +172,18 @@ function update_manager_access() {
  */
 function update_theme() {
   return array(
-    'update_manager_update_form' => array(
-      'render element' => 'form',
-      'file' => 'update.manager.inc',
-    ),
-    'update_last_check' => array(
-      'variables' => array('last' => 0),
-      'template' => 'update-last-check',
-    ),
     'update_report' => array(
       'variables' => array('data' => NULL),
       'file' => 'update.report.inc',
+      'template' => 'update-report',
     ),
-    'update_version' => array(
-      'variables' => array('version' => NULL, 'tag' => NULL, 'class' => array()),
+    'update_project_status' => array(
+      'variables' => array('project' => array(), 'includes_status' => array()),
       'file' => 'update.report.inc',
+      'template' => 'update-project-status',
     ),
-    'update_status_label' => array(
-      'variables' => array('status' => NULL),
+    'update_version' => array(
+      'variables' => array('version' => NULL, 'title' => NULL, 'attributes' => array()),
       'file' => 'update.report.inc',
     ),
   );
@@ -556,26 +550,6 @@ function _update_project_status_sort($a, $b) {
 }
 
 /**
- * Prepares variables for last time update data was checked templates.
- *
- * Default template: update-last-check.html.twig.
- *
- * In addition to properly formatting the given timestamp, this function also
- * provides a "Check manually" link that refreshes the available update and
- * redirects back to the same page.
- *
- * @param $variables
- *   An associative array containing:
- *   - last: The timestamp when the site last checked for available updates.
- *
- * @see theme_update_report()
- */
-function template_preprocess_update_last_check(&$variables) {
-  $variables['time'] = \Drupal::service('date')->formatInterval(REQUEST_TIME - $variables['last']);
-  $variables['link'] = \Drupal::l(t('Check manually'), 'update.manual_status', array(), array('query' => drupal_get_destination()));
-}
-
-/**
  * Implements hook_verify_update_archive().
  *
  * First, we ensure that the archive isn't a copy of Drupal core, which the
diff --git a/core/modules/update/update.report.inc b/core/modules/update/update.report.inc
index b4410e0..3534a33 100644
--- a/core/modules/update/update.report.inc
+++ b/core/modules/update/update.report.inc
@@ -5,10 +5,14 @@
  * Code required only when rendering the available updates report.
  */
 
+
 use Drupal\Component\Utility\String;
+use Drupal\Core\Template\Attribute;
 
 /**
- * Returns HTML for the project status report.
+ * Prepares variables for project status report templates.
+ *
+ * Default template: update-report.html.twig.
  *
  * @param array $variables
  *   An associative array containing:
@@ -16,22 +20,16 @@
  *
  * @ingroup themeable
  */
-function theme_update_report($variables) {
+function template_preprocess_update_report(&$variables) {
   $data = $variables['data'];
 
+  $notification_level = \Drupal::config('update.settings')->get('notification.threshold');
   $last = \Drupal::state()->get('update.last_check') ?: 0;
-  $update_last_check = array(
-    '#theme' => 'update_last_check',
-    '#last' => $last,
-  );
-  $output = drupal_render($update_last_check);
 
-  if (!is_array($data)) {
-    $output .= '<p>' . $data . '</p>';
-    return $output;
-  }
+  $variables['last_checked'] = ($last != NULL);
+  $variables['time'] = \Drupal::service('date')->formatInterval(REQUEST_TIME - $last);
+  $variables['link'] = \Drupal::l(t('Check manually'), 'update.manual_status', array(), array('query' => drupal_get_destination()));
 
-  $header = array();
   $rows = array();
 
   // Create an array of status values keyed by module or theme name, since
@@ -44,11 +42,31 @@ function theme_update_report($variables) {
   }
 
   foreach ($data as $project) {
+    $project_status = array(
+      '#theme' =>  'update_project_status',
+      '#project' => $project,
+      '#includes_status' => $status,
+    );
+
+    // Build project rows.
+    if (!isset($rows[$project['project_type']])) {
+      $rows[$project['project_type']] = array(
+        '#type' => 'table',
+        '#attributes' => array('class' => array('update')),
+      );
+    }
+    $row_key = !empty($project['title']) ? drupal_strtolower($project['title']) : drupal_strtolower($project['name']);
+
+    // Add the project status row and details.
+    $rows[$project['project_type']][$row_key]['status'] = $project_status;
+
+    // Add project status class attribute to the table row.
     switch ($project['status']) {
       case UPDATE_CURRENT:
         $class = 'ok';
         $uri = 'core/misc/icons/73b355/check.png';
         $text = t('ok');
+        $rows[$project['project_type']][$row_key]['#attributes'] = array('class' => array('ok'));
         break;
       case UPDATE_UNKNOWN:
       case UPDATE_FETCH_PENDING:
@@ -56,6 +74,7 @@ function theme_update_report($variables) {
         $class = 'unknown';
         $uri = 'core/misc/icons/e29700/warning.png';
         $text = t('warning');
+        $rows[$project['project_type']][$row_key]['#attributes'] = array('class' => array('unknown'));
         break;
       case UPDATE_NOT_SECURE:
       case UPDATE_REVOKED:
@@ -63,6 +82,7 @@ function theme_update_report($variables) {
         $class = 'error';
         $uri = 'core/misc/icons/ea2800/error.png';
         $text = t('error');
+        $rows[$project['project_type']][$row_key]['#attributes'] = array('class' => array('error'));
         break;
       case UPDATE_NOT_CHECKED:
       case UPDATE_NOT_CURRENT:
@@ -70,207 +90,9 @@ function theme_update_report($variables) {
         $class = 'warning';
         $uri = 'core/misc/icons/e29700/warning.png';
         $text = t('warning');
+        $rows[$project['project_type']][$row_key]['#attributes'] = array('class' => array('warning'));
         break;
     }
-
-    $icon = array(
-      '#theme' => 'image',
-      '#width' => 18,
-      '#height' => 18,
-      '#uri' => $uri,
-      '#alt' => $text,
-      '#title' => $text,
-    );
-
-    $row = '<div class="version-status">';
-    $update_status_label = array('#theme' => 'update_status_label', '#status' => $project['status']);
-    $status_label = drupal_render($update_status_label);
-    $row .= !empty($status_label) ? $status_label : String::checkPlain($project['reason']);
-    $row .= '<span class="icon">' . drupal_render($icon) . '</span>';
-    $row .= "</div>\n";
-
-    $row .= '<div class="project">';
-    if (isset($project['title'])) {
-      if (isset($project['link'])) {
-        $row .= l($project['title'], $project['link']);
-      }
-      else {
-        $row .= String::checkPlain($project['title']);
-      }
-    }
-    else {
-      $row .= String::checkPlain($project['name']);
-    }
-    $row .= ' ' . String::checkPlain($project['existing_version']);
-    if ($project['install_type'] == 'dev' && !empty($project['datestamp'])) {
-      $row .= ' <span class="version-date">(' . format_date($project['datestamp'], 'custom', 'Y-M-d') . ')</span>';
-    }
-    $row .= "</div>\n";
-
-    $versions_inner = '';
-    $security_class = array();
-    $version_class = array();
-    if (isset($project['recommended'])) {
-      if ($project['status'] != UPDATE_CURRENT || $project['existing_version'] !== $project['recommended']) {
-
-        // First, figure out what to recommend.
-        // If there's only 1 security update and it has the same version we're
-        // recommending, give it the same CSS class as if it was recommended,
-        // but don't print out a separate "Recommended" line for this project.
-        if (!empty($project['security updates']) && count($project['security updates']) == 1 && $project['security updates'][0]['version'] === $project['recommended']) {
-          $security_class[] = 'version-recommended';
-          $security_class[] = 'version-recommended-strong';
-        }
-        else {
-          $version_class[] = 'version-recommended';
-          // Apply an extra class if we're displaying both a recommended
-          // version and anything else for an extra visual hint.
-          if ($project['recommended'] !== $project['latest_version']
-              || !empty($project['also'])
-              || ($project['install_type'] == 'dev'
-                && isset($project['dev_version'])
-                && $project['latest_version'] !== $project['dev_version']
-                && $project['recommended'] !== $project['dev_version'])
-              || (isset($project['security updates'][0])
-                && $project['recommended'] !== $project['security updates'][0])
-              ) {
-            $version_class[] = 'version-recommended-strong';
-          }
-          $update_version = array(
-            '#theme' => 'update_version',
-            '#version' => $project['releases'][$project['recommended']],
-            '#tag' => t('Recommended version:'),
-            '#class' => $version_class,
-          );
-          $versions_inner .= drupal_render($update_version);
-        }
-
-        // Now, print any security updates.
-        if (!empty($project['security updates'])) {
-          $security_class[] = 'version-security';
-          foreach ($project['security updates'] as $security_update) {
-            $update_version = array(
-              '#theme' => 'update_version',
-              '#version' => $security_update,
-              '#tag' => t('Security update:'),
-              '#class' => $security_class,
-            );
-            $versions_inner .= drupal_render($update_version);
-          }
-        }
-      }
-
-      if ($project['recommended'] !== $project['latest_version']) {
-        $update_version = array(
-          '#theme' => 'update_version',
-          '#version' => $project['releases'][$project['latest_version']],
-          '#tag' => t('Latest version:'),
-          '#class' => array('version-latest'),
-        );
-        $versions_inner .= drupal_render($update_version);
-      }
-      if ($project['install_type'] == 'dev'
-          && $project['status'] != UPDATE_CURRENT
-          && isset($project['dev_version'])
-          && $project['recommended'] !== $project['dev_version']) {
-        $update_version = array(
-          '#theme' => 'update_version',
-          '#version' => $project['releases'][$project['dev_version']],
-          '#tag' => t('Development version:'),
-          '#class' => array('version-latest'),
-        );
-        $versions_inner .= drupal_render($update_version);
-      }
-    }
-
-    if (isset($project['also'])) {
-      foreach ($project['also'] as $also) {
-        $update_version = array(
-          '#theme' => 'update_version',
-          '#version' => $project['releases'][$also],
-          '#tag' => t('Also available:'),
-          '#class' => array('version-also-available'),
-        );
-        $versions_inner .= drupal_render($update_version);
-      }
-    }
-
-    if (!empty($versions_inner)) {
-      $row .= "<div class=\"versions\">\n" . $versions_inner . "</div>\n";
-    }
-    $row .= "<div class=\"info\">\n";
-    if (!empty($project['extra'])) {
-      $row .= '<div class="extra">' . "\n";
-      foreach ($project['extra'] as $value) {
-        $row .= '<div class="' . implode(' ', $value['class']) . '">';
-        $row .= String::checkPlain($value['label']) . ': ';
-        $row .= drupal_placeholder($value['data']);
-        $row .= "</div>\n";
-      }
-      $row .= "</div>\n";  // extra div.
-    }
-
-    $row .= '<div class="includes">';
-    sort($project['includes']);
-    if (!empty($project['disabled'])) {
-      sort($project['disabled']);
-      // Make sure we start with a clean slate for each project in the report.
-      $includes_items = array();
-      $row .= t('Includes:');
-      $includes_items[] = t('Enabled: %includes', array('%includes' => implode(', ', $project['includes'])));
-      $includes_items[] = t('Disabled: %disabled', array('%disabled' => implode(', ', $project['disabled'])));
-      $item_list = array(
-        '#theme' => 'item_list',
-        '#items' => $includes_items,
-      );
-      $row .= drupal_render($item_list);
-    }
-    else {
-      $row .= t('Includes: %includes', array('%includes' => implode(', ', $project['includes'])));
-    }
-    $row .= "</div>\n";
-
-    if (!empty($project['base_themes'])) {
-      $row .= '<div class="basethemes">';
-      asort($project['base_themes']);
-      $base_themes = array();
-      foreach ($project['base_themes'] as $base_key => $base_theme) {
-        $update_status_label = array(
-          '#theme' => 'update_status_label',
-          '#status' => $status[$base_key],
-        );
-        switch ($status[$base_key]) {
-          case UPDATE_NOT_SECURE:
-          case UPDATE_REVOKED:
-          case UPDATE_NOT_SUPPORTED:
-            $base_themes[] = t('%base_theme (!base_label)', array('%base_theme' => $base_theme, '!base_label' => drupal_render($update_status_label)));
-            break;
-
-          default:
-            $base_themes[] = drupal_placeholder($base_theme);
-        }
-      }
-      $row .= t('Depends on: !basethemes', array('!basethemes' => implode(', ', $base_themes)));
-      $row .= "</div>\n";
-    }
-
-    if (!empty($project['sub_themes'])) {
-      $row .= '<div class="subthemes">';
-      sort($project['sub_themes']);
-      $row .= t('Required by: %subthemes', array('%subthemes' => implode(', ', $project['sub_themes'])));
-      $row .= "</div>\n";
-    }
-
-    $row .= "</div>\n"; // info div.
-
-    if (!isset($rows[$project['project_type']])) {
-      $rows[$project['project_type']] = array();
-    }
-    $row_key = isset($project['title']) ? drupal_strtolower($project['title']) : drupal_strtolower($project['name']);
-    $rows[$project['project_type']][$row_key] = array(
-      'class' => array($class),
-      'data' => array($row),
-    );
   }
 
   $project_types = array(
@@ -280,19 +102,15 @@ function theme_update_report($variables) {
     'module-disabled' => t('Disabled modules'),
     'theme-disabled' => t('Disabled themes'),
   );
+
+  $variables['project_types'] = array();
   foreach ($project_types as $type_name => $type_label) {
     if (!empty($rows[$type_name])) {
       ksort($rows[$type_name]);
-      $output .= "\n<h3>" . $type_label . "</h3>\n";
-      $table = array(
-        '#type' => 'table',
-        '#header' => $header,
-        '#rows' => $rows[$type_name],
-        '#attributes' => array(
-          'class' => array('update'),
-        ),
+      $variables['project_types'][] = array(
+        'label' => $type_label,
+        'table' => $rows[$type_name],
       );
-      $output .= drupal_render($table);
     }
   }
 
@@ -304,38 +122,243 @@ function theme_update_report($variables) {
     )
   );
   drupal_render($assets);
-
-  return $output;
 }
 
 /**
- * Returns HTML for a label to display for a project's update status.
+ * Prepares variables for update project status templates.
+ *
+ * Default template: update-project-status.html.twig.
  *
  * @param array $variables
  *   An associative array containing:
- *   - status: The integer code for a project's current update status.
+ *   - data: An array of data about each project's status.
+ *   - project_status:
  *
- * @see update_calculate_project_data()
  * @ingroup themeable
  */
-function theme_update_status_label($variables) {
-  switch ($variables['status']) {
-    case UPDATE_NOT_SECURE:
-      return '<span class="security-error">' . t('Security update required!') . '</span>';
+function template_preprocess_update_project_status(&$variables) {
+  // Storing by reference because we are sorting the project values.
+  $project =& $variables['project'];
+  $includes_status = $variables['includes_status'];
+
+  // Set the project title and URL.
+  $variables['title'] = (isset($project['title'])) ? $project['title'] : $project['name'];
+  $variables['url'] = (isset($project['link'])) ? url($project['link']) : NULL;
+
+  $variables['install_type'] = $project['install_type'];
+  if ($project['install_type'] == 'dev' && !empty($project['datestamp'])) {
+    $variables['datestamp'] = format_date($project['datestamp'], 'custom', 'Y-M-d');
+  }
 
-    case UPDATE_REVOKED:
-      return '<span class="revoked">' . t('Revoked!') . '</span>';
+  $variables['existing_version'] = $project['existing_version'];
+
+  $versions_inner = array();
+  $security_class = array();
+  $version_class = array();
+  if (isset($project['recommended'])) {
+    if ($project['status'] != UPDATE_CURRENT || $project['existing_version'] !== $project['recommended']) {
+
+      // First, figure out what to recommend.
+      // If there's only 1 security update and it has the same version we're
+      // recommending, give it the same CSS class as if it was recommended,
+      // but don't print out a separate "Recommended" line for this project.
+      if (!empty($project['security updates'])
+          && count($project['security updates']) == 1
+          && $project['security updates'][0]['version'] === $project['recommended']
+          ) {
+        $security_class[] = 'version-recommended';
+        $security_class[] = 'version-recommended-strong';
+      }
+      else {
+        $version_class[] = 'version-recommended';
+        // Apply an extra class if we're displaying both a recommended
+        // version and anything else for an extra visual hint.
+        if ($project['recommended'] !== $project['latest_version']
+            || !empty($project['also'])
+            || ($project['install_type'] == 'dev'
+              && isset($project['dev_version'])
+              && $project['latest_version'] !== $project['dev_version']
+              && $project['recommended'] !== $project['dev_version'])
+            || (isset($project['security updates'][0])
+              && $project['recommended'] !== $project['security updates'][0])
+            ) {
+          $version_class[] = 'version-recommended-strong';
+        }
+        $versions_inner[] = array(
+          '#theme' => 'update_version',
+          '#version' => $project['releases'][$project['recommended']],
+          '#title' => t('Recommended version:'),
+          '#attributes' => array('class' => $version_class),
+        );
+      }
 
-    case UPDATE_NOT_SUPPORTED:
-      return '<span class="not-supported">' . t('Not supported!') . '</span>';
+      // Now, print any security updates.
+      if (!empty($project['security updates'])) {
+        $security_class[] = 'version-security';
+        foreach ($project['security updates'] as $security_update) {
+          $versions_inner[] = array(
+            '#theme' => 'update_version',
+            '#version' => $security_update,
+            '#title' => t('Security update:'),
+            '#attributes' => array('class' => $security_class),
+          );
+        }
+      }
+    }
 
-    case UPDATE_NOT_CURRENT:
-      return '<span class="not-current">' . t('Update available') . '</span>';
+    if ($project['recommended'] !== $project['latest_version']) {
+      $versions_inner[] = array(
+        '#theme' => 'update_version',
+        '#version' => $project['releases'][$project['latest_version']],
+        '#title' => t('Latest version:'),
+        '#attributes' => array('class' => array('version-latest')),
+      );
+    }
+    if ($project['install_type'] == 'dev'
+        && $project['status'] != UPDATE_CURRENT
+        && isset($project['dev_version'])
+        && $project['recommended'] !== $project['dev_version']) {
+      $versions_inner[] = array(
+        '#theme' => 'update_version',
+        '#version' => $project['releases'][$project['dev_version']],
+        '#title' => t('Development version:'),
+        '#attributes' => array('class' => array('version-latest')),
+      );
+    }
+  }
+
+  if (isset($project['also'])) {
+    foreach ($project['also'] as $also) {
+      $versions_inner[] = array(
+        '#theme' => 'update_version',
+        '#version' => $project['releases'][$also],
+        '#title' => t('Also available:'),
+        '#attributes' => array('class' => array('version-also-available')),
+      );
+    }
+  }
+
+  if (!empty($versions_inner)) {
+    $variables['versions'] = $versions_inner;
+  }
+
+  if (!empty($project['disabled'])) {
+    sort($project['disabled']);
+    $variables['disabled'] = $project['disabled'];
+  }
+
+  sort($project['includes']);
+  $variables['includes'] = $project['includes'];
+
+  $variables['extras'] = array();
+  if (!empty($project['extra'])) {
+    foreach ($project['extra'] as $value) {
+      $extra_item = array();
+      $extra_item['attributes'] = new Attribute(array('class' => $value['class']));
+      $extra_item['label'] = $value['label'];
+      $extra_item['data'] = drupal_placeholder($value['data']);
+      $variables['extras'][] = $extra_item;
+    }
+  }
+
+  if (!empty($project['base_themes'])) {
+    asort($project['base_themes']);
+    $base_themes = array();
+    foreach ($project['base_themes'] as $base_key => $base_theme) {
+      switch ($includes_status[$base_key]) {
+        case UPDATE_NOT_SECURE:
+          $base_status_label = t('Security update required!');
+          break;
+        case UPDATE_REVOKED:
+          $base_status_label = t('Revoked!');
+          break;
+        case UPDATE_NOT_SUPPORTED:
+          $base_status_label = t('Not supported!');
+          break;
+        default:
+          $base_status_label = '';
+      }
+
+      if ($base_status_label) {
+        $base_themes[] = t('%base_theme (!base_label)', array(
+          '%base_theme' => $base_theme,
+          '!base_label' => $base_status_label,
+        ));
+      }
+      else {
+        $base_themes[] = drupal_placeholder($base_theme);
+      }
+    }
+    $variables['base_themes'] = $base_themes;
+  }
+
+  if (!empty($project['sub_themes'])) {
+    sort($project['sub_themes']);
+    $variables['sub_themes'] = $project['sub_themes'];
+  }
 
+  // Set the project status details.
+  $status_attributes = array();
+  $status_label = NULL;
+  switch ($project['status']) {
+    case UPDATE_NOT_SECURE:
+      $status_attributes['class'][] = 'security-error';
+      $status_label = t('Security update required!');
+      break;
+    case UPDATE_REVOKED:
+      $status_attributes['class'][] = 'revoked';
+      $status_label = t('Revoked!');
+      break;
+    case UPDATE_NOT_SUPPORTED:
+      $status_attributes['class'][] = 'not-supported';
+      $status_label = t('Not supported!');
+      break;
+    case UPDATE_NOT_CURRENT:
+      $status_attributes['class'][] = 'not-current';
+      $status_label = t('Update available');
+      break;
     case UPDATE_CURRENT:
-      return '<span class="current">' . t('Up to date') . '</span>';
+      $status_attributes['class'][] = 'current';
+      $status_label = t('Up to date');
+      break;
+  }
+  $variables['status']['label'] = $status_label;
+  $variables['status']['attributes'] = new Attribute($status_attributes);
+  $variables['status']['reason'] = (isset($project['reason'])) ? $project['reason'] : NULL;
 
+  switch ($project['status']) {
+    case UPDATE_CURRENT:
+      $uri = 'core/misc/watchdog-ok.png';
+      $text = t('ok');
+      break;
+    case UPDATE_UNKNOWN:
+    case UPDATE_FETCH_PENDING:
+    case UPDATE_NOT_FETCHED:
+      $uri = 'core/misc/watchdog-warning.png';
+      $text = t('warning');
+      break;
+    case UPDATE_NOT_SECURE:
+    case UPDATE_REVOKED:
+    case UPDATE_NOT_SUPPORTED:
+      $uri = 'core/misc/watchdog-error.png';
+      $text = t('error');
+      break;
+    case UPDATE_NOT_CHECKED:
+    case UPDATE_NOT_CURRENT:
+    default:
+      $uri = 'core/misc/watchdog-warning.png';
+      $text = t('warning');
+      break;
   }
+
+  $variables['status']['icon'] = array(
+    '#theme' => 'image',
+    '#width' => 18,
+    '#height' => 18,
+    '#uri' => $uri,
+    '#alt' => $text,
+    '#title' => $text,
+  );
 }
 
 /**
@@ -348,41 +371,55 @@ function theme_update_status_label($variables) {
  *     - release_link: The URL for the release notes.
  *     - date: The date of the release.
  *     - download_link: The URL for the downloadable file.
- *   - tag: The title of the project.
- *   - class: A string containing extra classes for the wrapping table.
+ *   - title: The title of the project.
+ *   - attributes: An array containing attributes for the wrapping table.
  *
  * @ingroup themeable
  */
 function theme_update_version($variables) {
   $version = $variables['version'];
-  $tag = $variables['tag'];
-  $class = implode(' ', $variables['class']);
-
-  $output = '';
-  $output .= '<table class="version ' . $class . '">';
-  $output .= '<tr>';
-  $output .= '<td class="version-title">' . $tag . "</td>\n";
-  $output .= '<td class="version-details">';
-  $output .= l($version['version'], $version['release_link']);
-  $output .= ' <span class="version-date">(' . format_date($version['date'], 'custom', 'Y-M-d') . ')</span>';
-  $output .= "</td>\n";
-  $output .= '<td class="version-links">';
-  $links = array();
-  $links['update-download'] = array(
+
+  $links['download'] = array(
     'title' => t('Download'),
     'href' => $version['download_link'],
   );
-  $links['update-release-notes'] = array(
+  $links['release-notes'] = array(
     'title' => t('Release notes'),
     'href' => $version['release_link'],
   );
-  $links__update_version = array(
-    '#theme' => 'links__update_version',
-    '#links' => $links,
+
+  // Add a class attribute to the table.
+  $variables['attributes']['class'][] = 'version';
+
+  $table = array(
+    '#type' => 'table',
+    '#attributes' => $variables['attributes'],
+  );
+
+  // Build row.
+  $table[] = array(
+    'title' => array(
+      '#wrapper_attributes' => array('class' => array('version-title')),
+      '#markup' => $variables['title'],
+    ),
+    'details' => array(
+      '#wrapper_attributes' => array('class' => array('version-details')),
+      array(
+        array(
+          '#markup' => l($version['version'], $version['release_link']),
+        ),
+        array(
+          '#prefix' => ' <span class="version-date">',
+          '#markup' => format_date($version['date'], 'custom', 'Y-M-d'),
+          '#suffix' => '</span>',
+        ),
+      ),
+    ),
+    'links' => array(
+      '#theme' => 'links__update_version',
+      '#links' => $links,
+      '#wrapper_attributes' => array('class' => array('version-links')),
+    ),
   );
-  $output .= drupal_render($links__update_version);
-  $output .= '</td>';
-  $output .= '</tr>';
-  $output .= "</table>\n";
-  return $output;
+  return drupal_render($table);
 }
