diff --git a/classes/local/table/interaction_remaining_table.php b/classes/local/table/interaction_remaining_table.php
index 2f10271c430745daf77b4f3553b244ecbe59a421..ba1b6816c7f936f5d78b55b1483d552892b125a6 100644
--- a/classes/local/table/interaction_remaining_table.php
+++ b/classes/local/table/interaction_remaining_table.php
@@ -194,4 +194,18 @@ class interaction_remaining_table extends interaction_table {
         return userdate($row->lastmodified, $dateformat);
     }
 
+    /**
+     * This function is not part of the public api.
+     */
+    public function print_nothing_to_display() {
+        global $OUTPUT;
+
+        // Render button to allow user to reset table preferences.
+        echo $this->render_reset_button();
+
+        $this->print_initials_bar();
+
+        echo $OUTPUT->box(get_string('noremainingcoursestodisplay', 'tool_lifecycle'));
+    }
+
 }
diff --git a/lang/de/tool_lifecycle.php b/lang/de/tool_lifecycle.php
index 5ce7b49b0715151ca750421d97f4260c13bd8d4a..fb643fbc1ac7066a1150f3b5248a45b2eb52201e 100644
--- a/lang/de/tool_lifecycle.php
+++ b/lang/de/tool_lifecycle.php
@@ -143,6 +143,7 @@ $string['nostepfound'] = 'Es konnte kein Schritt mit der gegeben Schrittid gefun
 $string['noprocessfound'] = 'Es konnte kein Prozess mit der gegebenen Prozessid gefunden werden!';
 
 $string['nocoursestodisplay'] = 'Es gibt derzeit keine Kurse, die Ihre Aufmerksamkeit erfordern!';
+$string['noremainingcoursestodisplay'] = 'Es gibt derzeit keine verbleibenden Kurse!';
 
 $string['course_backups_list_header'] = 'Kurssicherungen';
 $string['backupcreated'] = 'Erstellt am';
diff --git a/lang/en/tool_lifecycle.php b/lang/en/tool_lifecycle.php
index dcf69f46e01aea6dc83a4e46ed13eb963e59a36f..ef79b583df2f8f24656d759e04c91ee83a221419 100644
--- a/lang/en/tool_lifecycle.php
+++ b/lang/en/tool_lifecycle.php
@@ -148,6 +148,7 @@ $string['nostepfound'] = 'A step with the given stepid could not be found!';
 $string['noprocessfound'] = 'A process with the given processid could not be found!';
 
 $string['nocoursestodisplay'] = 'There are currently no courses which require your attention!';
+$string['noremainingcoursestodisplay'] = 'There are currently no remaining courses!';
 
 $string['course_backups_list_header'] = 'Course backups';
 $string['backupcreated'] = 'Created at';