Skip to content
Snippets Groups Projects
Commit 3f9d753c authored by Nico Vermaas's avatar Nico Vermaas
Browse files

update documentation diagrams

(also the one in ATDB)
parent 0d992c27
Branches
No related tags found
2 merge requests!295merge all the updates to master into this branch also,!294adding (initial) discard mechanism
Pipeline #49309 passed
atdb/docs/ATDB-LDV Data Model.png

95.3 KiB | W: | H:

atdb/docs/ATDB-LDV Data Model.png

126 KiB | W: | H:

atdb/docs/ATDB-LDV Data Model.png
atdb/docs/ATDB-LDV Data Model.png
atdb/docs/ATDB-LDV Data Model.png
atdb/docs/ATDB-LDV Data Model.png
  • 2-up
  • Swipe
  • Onion skin
atdb/docs/ATDB-LDV GUI.png

165 KiB | W: | H:

atdb/docs/ATDB-LDV GUI.png

525 KiB | W: | H:

atdb/docs/ATDB-LDV GUI.png
atdb/docs/ATDB-LDV GUI.png
atdb/docs/ATDB-LDV GUI.png
atdb/docs/ATDB-LDV GUI.png
  • 2-up
  • Swipe
  • Onion skin
atdb/docs/ATDB-LDV Workflow Diagram.png

156 KiB | W: | H:

atdb/docs/ATDB-LDV Workflow Diagram.png

278 KiB | W: | H:

atdb/docs/ATDB-LDV Workflow Diagram.png
atdb/docs/ATDB-LDV Workflow Diagram.png
atdb/docs/ATDB-LDV Workflow Diagram.png
atdb/docs/ATDB-LDV Workflow Diagram.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -54,3 +54,19 @@ logging[14/Apr/2023 14:17:24,827] unsupported operand type(s) for +=: 'NoneType'
[04/May/2023 14:35:52,193] task 25378 - (regular) - 116876 has no plots, skipped.
[04/May/2023 14:35:52,294] 'NoneType' object is not subscriptable
[04/May/2023 14:35:52,294] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:20,610] 'NoneType' object is not subscriptable
[09/May/2023 08:47:20,610] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:20,725] 'NoneType' object is not subscriptable
[09/May/2023 08:47:20,725] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:20,822] 'NoneType' object is not subscriptable
[09/May/2023 08:47:20,823] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:20,932] 'NoneType' object is not subscriptable
[09/May/2023 08:47:20,933] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:32,444] 'NoneType' object is not subscriptable
[09/May/2023 08:47:32,445] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:33,063] 'NoneType' object is not subscriptable
[09/May/2023 08:47:33,064] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:33,649] 'NoneType' object is not subscriptable
[09/May/2023 08:47:33,650] task 25378 - (regular) - 116876 has no plots, skipped.
[09/May/2023 08:47:34,165] 'NoneType' object is not subscriptable
[09/May/2023 08:47:34,165] task 25378 - (regular) - 116876 has no plots, skipped.
......@@ -486,9 +486,14 @@ class ShowFinishedPage(ListView):
# this provides a broad range of filters for the search_box in the GUI
def get_filtered_tasks(request, pre_filtered_tasks=None, distinct=None):
filtered_tasks_as_list = None
# there was an attempt to pre_filter tasks, but it has yielded no results.
# further filtering is then useless, return an empty queryset
if pre_filtered_tasks is not None:
if pre_filtered_tasks.count() == 0:
return pre_filtered_tasks
try:
my_sort = request.session['sort']
except:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment