diff --git a/src/Form/TaskSettingsForm.php b/src/Form/TaskSettingsForm.php
deleted file mode 100755
index 629f925..0000000
--- a/src/Form/TaskSettingsForm.php
+++ /dev/null
@@ -1,53 +0,0 @@
-<?php
-
-namespace Drupal\task\Form;
-
-use Drupal\Core\Form\FormBase;
-use Drupal\Core\Form\FormStateInterface;
-
-/**
- * Class TaskSettingsForm.
- *
- * @ingroup task
- */
-class TaskSettingsForm extends FormBase {
-
-  /**
-   * Returns a unique string identifying the form.
-   *
-   * @return string
-   *   The unique string identifying the form.
-   */
-  public function getFormId() {
-    return 'task_settings';
-  }
-
-  /**
-   * Form submission handler.
-   *
-   * @param array $form
-   *   An associative array containing the structure of the form.
-   * @param \Drupal\Core\Form\FormStateInterface $form_state
-   *   The current state of the form.
-   */
-  public function submitForm(array &$form, FormStateInterface $form_state) {
-    // Empty implementation of the abstract submit class.
-  }
-
-  /**
-   * Defines the settings form for Task entities.
-   *
-   * @param array $form
-   *   An associative array containing the structure of the form.
-   * @param \Drupal\Core\Form\FormStateInterface $form_state
-   *   The current state of the form.
-   *
-   * @return array
-   *   Form definition array.
-   */
-  public function buildForm(array $form, FormStateInterface $form_state) {
-    $form['task_settings']['#markup'] = 'Settings form for Task entities. Manage field settings here.';
-    return $form;
-  }
-
-}
diff --git a/task.routing.yml b/task.routing.yml
index 7e4a2a4..76312a7 100755
--- a/task.routing.yml
+++ b/task.routing.yml
@@ -1,7 +1,8 @@
 task.settings:
   path: '/admin/structure/task'
   defaults:
-    _form: '\Drupal\task\Form\TaskSettingsForm'
+    _entity_list:  'task_type'
+    _title: 'Task types'
   requirements:
     _permission: 'administer task'
 
