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

handling review comments

parent aa8bd748
No related branches found
No related tags found
1 merge request!339SDC-1188 - STEP 1 of 3 (the database)
Pipeline #72333 passed
...@@ -6,7 +6,7 @@ from django.contrib.auth.models import User ...@@ -6,7 +6,7 @@ from django.contrib.auth.models import User
from django.dispatch import receiver from django.dispatch import receiver
from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.models import ContentType
from taskdatabase.models import Task, Workflow, LogEntry, Status from taskdatabase.models import Task, Workflow, LogEntry, Status
from .activities import update_activity from .activities_handler import update_activity
""" """
Signals sent from different parts of the backend are centrally defined and handled here. Signals sent from different parts of the backend are centrally defined and handled here.
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
{% include 'taskdatabase/pagination.html' %} {% include 'taskdatabase/pagination.html' %}
</div> </div>
</div> </div>
<p class="footer"> Version 13 Feb 2024 <p class="footer"> Version 15 Feb 2024
</div> </div>
{% include 'taskdatabase/refresh.html' %} {% include 'taskdatabase/refresh.html' %}
......
...@@ -42,7 +42,7 @@ from .serializers import \ ...@@ -42,7 +42,7 @@ from .serializers import \
PostProcessingRuleSerializer, \ PostProcessingRuleSerializer, \
MonitorSerializer, LatestMonitorSerializer MonitorSerializer, LatestMonitorSerializer
from .services import algorithms, activities from .services import algorithms, activities_handler
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
......
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