diff --git a/atdb/taskdatabase/models.py b/atdb/taskdatabase/models.py index 6fb37f4ffe8a094daf58b5cd50906ad58c60231e..ad14b9dd66de1a220d070b9a236d68b2d258dd46 100644 --- a/atdb/taskdatabase/models.py +++ b/atdb/taskdatabase/models.py @@ -25,7 +25,7 @@ class Workflow(models.Model): prefetch = models.BooleanField(null=True, default=True) def __str__(self): - return str(self.id) + '-' + str(self.workflow_uri) + return str(self.id) + ' - ' + str(self.workflow_uri) # convert the quality information from the JSONfield into a easy parsable list for the template @@ -241,12 +241,23 @@ class Task(models.Model): @property def sasid_is_verified(self): - for task in Task.objects.filter(sas_id=self.sas_id): if task.status not in verified_statusses: return False return True + # NV: this shows the latest status change, but because it is a derived property it cannot be sorted. + # This functionality was not requested, and to avoid additional requests about 'sort' functionalty + # it is currently commented out. Could be of use later though, so I leave it in for now. + # @property + # def latest_change(self): + # qs = Status.objects.filter(task__id=self.id).order_by('-timestamp') + # if len(qs) > 0: + # status = qs[0] + # timestamp = status.timestamp + # + # return timestamp + class LogEntry(models.Model): cpu_cycles = models.IntegerField(null=True,blank=True) diff --git a/atdb/taskdatabase/templates/taskdatabase/tasks.html b/atdb/taskdatabase/templates/taskdatabase/tasks.html index 6aacb705d5498377b213dfa4d2707d59e50be156..ca912c2ce1448c150b1c95a218725da2ef22808d 100644 --- a/atdb/taskdatabase/templates/taskdatabase/tasks.html +++ b/atdb/taskdatabase/templates/taskdatabase/tasks.html @@ -28,7 +28,7 @@ <a class="open-modal btn btn-primary btn-sm" href="{% url 'workflow-details' task.workflow %}" data-popup-url="{% url 'workflow-details' task.workflow %}" - target="_blank"><i class="fas fa-project-diagram"></i> {{ task.workflow }} + target="_blank"><i class="fas fa-project-diagram"></i> {{ task.workflow.id }} </a></td> </td> <td> @@ -47,7 +47,7 @@ {% if not task.resume %} <td class="bigger">{{ task.status }} (holding)</td> {% endif %} - +<!-- <td>{{ task.latest_change|date:"Y-m-d H:i:s" }}</td>--> <td>{{ task.project }}</td> <td>{{ task.sas_id }}</td> <td>{{ task.filter }} </td> diff --git a/atdb/taskdatabase/templates/taskdatabase/tasks_headers.html b/atdb/taskdatabase/templates/taskdatabase/tasks_headers.html index 638e9c8f637421ae56f2f2705a24b33da98ec439..cb2ae6ecd7e4b79d4a9d0a8df29782f12e9bf1eb 100644 --- a/atdb/taskdatabase/templates/taskdatabase/tasks_headers.html +++ b/atdb/taskdatabase/templates/taskdatabase/tasks_headers.html @@ -21,6 +21,7 @@ Status <a href="{% url 'sort-tasks' 'status' 'atdb' %}" class="btn btn-light btn-sm" role="button"><i class="fas fa-sort-down"></i></a> </th> +<!-- <th>Latest Change</th>--> <th> <a href="{% url 'sort-tasks' '-project' 'atdb' %}" class="btn btn-light btn-sm" role="button"><i class="fas fa-sort-up"></i></a> Project