diff --git a/atdb/taskdatabase/models.py b/atdb/taskdatabase/models.py
index 59d1ccbe37abd80915c9c280c81cb8f49a0912f9..27adf8c94fb28f492c4523e2973641de817c35d3 100644
--- a/atdb/taskdatabase/models.py
+++ b/atdb/taskdatabase/models.py
@@ -224,12 +224,6 @@ class Task(models.Model):
         except:
             return None
 
-    # def lta_object_id(self):
-    #     try:
-    #         return self.archive['lta_object_id']
-    #     except:
-    #         return None
-
 
     def path_to_lta(self):
         try:
diff --git a/atdb/taskdatabase/templates/taskdatabase/failures/page.html b/atdb/taskdatabase/templates/taskdatabase/failures/page.html
index 274af27451e6a3435cfe071410f153f819ad8eab..cc3032c85dd74a1e1adacef56a72680ca7a8412c 100644
--- a/atdb/taskdatabase/templates/taskdatabase/failures/page.html
+++ b/atdb/taskdatabase/templates/taskdatabase/failures/page.html
@@ -9,7 +9,7 @@
         <div class="row">
             <div class="col-8">
                 <h3>Failures</h3>
-                These are all the tasks that failed.
+                These are all the tasks that <b>failed</b>.
                 Click 'Retry' to restart the this step in the workflow (see 'Diagram' in top menu).
                 <td>{% include 'taskdatabase/filter/search.html' %}</td>
                 <hr>
diff --git a/atdb/taskdatabase/views.py b/atdb/taskdatabase/views.py
index d414df3d21149de1a5b9dda3067f1ccfb238c459..6214606b47a183b667e1e72d80d5395fc036fdd4 100644
--- a/atdb/taskdatabase/views.py
+++ b/atdb/taskdatabase/views.py
@@ -85,6 +85,7 @@ class TaskFilterQueryPage(filters.FilterSet):
             'quality': ['icontains', 'in'],
             'project': ['exact', 'icontains', 'in'],
             'sas_id': ['exact', 'icontains', 'in'],
+            #'sas_id_archived': ['exact', 'icontains', 'in'],
         }