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

filter out the 'postprocessing' tasks in the GUI and tasks api (for backward compatibility)

parent 0be20106
No related branches found
No related tags found
3 merge requests!153Release datamodel for postprocessing changes,!152add PostProcessingRule object to database,!151Dev nico
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
{% include 'taskdatabase/pagination.html' %} {% include 'taskdatabase/pagination.html' %}
</div> </div>
</div> </div>
<p class="footer"> Version 1.0.0 (18 jan 2021 - 13:00) <p class="footer"> Version 1.0.0 (18 jan 2021 - 15:00)
</div> </div>
......
...@@ -142,6 +142,7 @@ class PostProcessingFilter(filters.FilterSet): ...@@ -142,6 +142,7 @@ class PostProcessingFilter(filters.FilterSet):
class QueryView(SingleTableMixin, FilterView): class QueryView(SingleTableMixin, FilterView):
table_class = TaskTable table_class = TaskTable
model = Task model = Task
queryset = Task.objects.filter(task_type='regular')
template_name = "query/index.html" template_name = "query/index.html"
filterset_class = TaskFilterQueryPage filterset_class = TaskFilterQueryPage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment