From b8798b46d7c02488d685245c4ab7a35a0e938b0d Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Sat, 6 May 2023 18:03:07 +0200 Subject: [PATCH 01/14] worked-hours + rework completed tour --- backend/analysis/__init__.py | 0 backend/analysis/serializers.py | 49 +++++++++++++++++++++++++++++++++ backend/analysis/tests.py | 0 backend/analysis/urls.py | 7 +++++ backend/analysis/views.py | 32 +++++++++++++++++++++ backend/base/signals.py | 29 ++++++++++++++++++- backend/config/urls.py | 1 + backend/users/views.py | 6 ++-- 8 files changed, 120 insertions(+), 4 deletions(-) create mode 100644 backend/analysis/__init__.py create mode 100644 backend/analysis/serializers.py create mode 100644 backend/analysis/tests.py create mode 100644 backend/analysis/urls.py create mode 100644 backend/analysis/views.py diff --git a/backend/analysis/__init__.py b/backend/analysis/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/analysis/serializers.py b/backend/analysis/serializers.py new file mode 100644 index 00000000..d6ab199b --- /dev/null +++ b/backend/analysis/serializers.py @@ -0,0 +1,49 @@ +from datetime import timedelta +from typing import List + +from rest_framework import serializers + +from base.models import StudentOnTour + + +def validate_student_on_tours(student_on_tours): + # raise an error if the student_on_tours queryset is not provided + if student_on_tours is None: + raise serializers.ValidationError('student_on_tours must be provided to serialize data') + + return student_on_tours + + +class WorkedHoursAnalysisSerializer(serializers.BaseSerializer): + def to_representation(self, student_on_tours: List[StudentOnTour]): + # create an empty dictionary to store worked hours data for each student + student_data = {} + + # iterate over the list of student_on_tours objects + for sot in student_on_tours: + # get the student id for the current StudentOnTour object + student_id = sot.student.id + + # calculate the worked hours for the current StudentOnTour object + if sot.completed_tour and sot.started_tour: + worked_time = sot.completed_tour - sot.started_tour + else: + worked_time = timedelta() + + # convert the worked hours to minutes + worked_minutes = int(worked_time.total_seconds() // 60) + + # if we've seen this student before, update their worked hours and student_on_tour_ids + if student_id in student_data: + student_data[student_id]['worked_minutes'] += worked_minutes + student_data[student_id]['student_on_tour_ids'].append(sot.id) + # otherwise, add a new entry for this student + else: + student_data[student_id] = { + 'student_id': student_id, + 'worked_minutes': worked_minutes, + 'student_on_tour_ids': [sot.id], + } + + # return the list of student data dictionaries + return list(student_data.values()) diff --git a/backend/analysis/tests.py b/backend/analysis/tests.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/analysis/urls.py b/backend/analysis/urls.py new file mode 100644 index 00000000..d3c67691 --- /dev/null +++ b/backend/analysis/urls.py @@ -0,0 +1,7 @@ +from django.urls import path + +from analysis.views import WorkedHoursAnalysis + +urlpatterns = [ + path("worked-hours/", WorkedHoursAnalysis.as_view(), name="worked-hours-analysis"), +] \ No newline at end of file diff --git a/backend/analysis/views.py b/backend/analysis/views.py new file mode 100644 index 00000000..6bc7ed40 --- /dev/null +++ b/backend/analysis/views.py @@ -0,0 +1,32 @@ +from django.core.exceptions import BadRequest +from rest_framework.permissions import IsAuthenticated +from rest_framework.views import APIView + +from analysis.serializers import WorkedHoursAnalysisSerializer +from base.models import StudentOnTour +from base.permissions import IsAdmin, IsSuperStudent +from util.request_response_util import get_success, get_filter_object, filter_instances, \ + bad_request_custom_error_message + + +class WorkedHoursAnalysis(APIView): + permission_classes = [IsAuthenticated, IsAdmin | IsSuperStudent] + serializer_class = WorkedHoursAnalysisSerializer + + def get(self, request): + """ + Get all worked hours for each student for a certain period + """ + student_on_tour_instances = StudentOnTour.objects.all() + filters = { + "start_date": get_filter_object("date__gte", required=True), + "end_date": get_filter_object("date__lte", required=True), + "region": get_filter_object("tour__region"), + } + + try: + student_on_tour_instances = filter_instances(request, student_on_tour_instances, filters) + except BadRequest as e: + return bad_request_custom_error_message(str(e)) + + return get_success(self.serializer_class(student_on_tour_instances)) diff --git a/backend/base/signals.py b/backend/base/signals.py index db1e39cf..5ddb5e2a 100644 --- a/backend/base/signals.py +++ b/backend/base/signals.py @@ -1,18 +1,30 @@ +from datetime import datetime + +import pytz from asgiref.sync import async_to_sync from channels.layers import get_channel_layer from django.db.models import Max from django.db.models.signals import post_save, pre_save from django.dispatch import receiver +import config.settings from base.models import StudentOnTour, RemarkAtBuilding @receiver(post_save, sender=RemarkAtBuilding) def progress_current_building_index(sender, instance: RemarkAtBuilding, **kwargs): + student_on_tour = instance.student_on_tour + if instance.type == RemarkAtBuilding.AANKOMST: - student_on_tour = instance.student_on_tour # since we start indexing our BuildingOnTour with index 1, this works (since current_building_index starts at 0) student_on_tour.current_building_index += 1 + + # since we only start calculating worked time from the moment we arrive at the first building + # we recalculate the start time of the tour + if student_on_tour.current_building_index == 1: + tz = pytz.timezone(config.settings.TIME_ZONE) + student_on_tour.started_tour = datetime.now(tz) + student_on_tour.save() # Broadcast update to websocket @@ -24,6 +36,21 @@ def progress_current_building_index(sender, instance: RemarkAtBuilding, **kwargs 'current_building_index': student_on_tour.current_building_index, } ) + elif (instance.type == RemarkAtBuilding.VERTREK and + student_on_tour.current_building_index == student_on_tour.max_building_index): + tz = pytz.timezone(config.settings.TIME_ZONE) + student_on_tour.completed_tour = datetime.now(tz) + student_on_tour.save() + + # Broadcast update to websocket + channel_layer = get_channel_layer() + async_to_sync(channel_layer.group_send)( + "student_on_tour_updates", + { + "type": 'student.on.tour.completed', + "student_on_tour_id": student_on_tour.id + } + ) @receiver(pre_save, sender=StudentOnTour) diff --git a/backend/config/urls.py b/backend/config/urls.py index 35d343c7..c34f0918 100644 --- a/backend/config/urls.py +++ b/backend/config/urls.py @@ -40,6 +40,7 @@ urlpatterns = [ path("", RootDefault.as_view()), + path("analysis/", include("analysis.urls")), path("admin/", admin.site.urls), path("docs/", SpectacularAPIView.as_view(), name="schema"), path("docs/ui/", SpectacularSwaggerView.as_view(url="/docs"), name="swagger-ui"), diff --git a/backend/users/views.py b/backend/users/views.py index fea427ba..e78f0f37 100644 --- a/backend/users/views.py +++ b/backend/users/views.py @@ -139,8 +139,8 @@ class AllUsersView(APIView): @extend_schema( description="GET all users in the database. There is the possibility to filter as well. You can filter on " - "various parameters. If the parameter name includes 'list' then you can add multiple entries of " - "those in the url.", + "various parameters. If the parameter name includes 'list' then you can add multiple entries of " + "those in the url.", parameters=param_docs( { "region-id-list": ("Filter by region ids", False, OpenApiTypes.INT), @@ -174,7 +174,7 @@ def transformations(key, param_value): try: user_instances = filter_instances(request, user_instances, filters, transformations) except BadRequest as e: - return Response({"message": str(e)}, status=status.HTTP_400_BAD_REQUEST) + return bad_request_custom_error_message(str(e)) serializer = UserSerializer(user_instances, many=True) return get_success(serializer) From 53712349c3e89bde43a119ebad2d2eac016ca0ba Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Sat, 6 May 2023 20:15:55 +0200 Subject: [PATCH 02/14] Changes in datadump to test workhours --- backend/datadump.json | 11093 ++++++++++++++++++++-------------------- 1 file changed, 5570 insertions(+), 5523 deletions(-) diff --git a/backend/datadump.json b/backend/datadump.json index 2e2f9690..b3b0ab9f 100644 --- a/backend/datadump.json +++ b/backend/datadump.json @@ -1,7113 +1,7160 @@ [ -{ + { "model": "sessions.session", "pk": "89r833bgtx3n9noaftc1quiw22bx2u0y", "fields": { - "session_data": ".eJxVjMEOgyAQRP-Fc2NYFpD2Vn-ELMsaTQ0mFU5N_73aeGiP82bmvVSkVqfYNnnGOaubMkZdfmEifkg5GlqWA3fEvLZSu-_mrLfuvicpdWaq81qG8_Wnmmibdk-S5IE0IztvHYI4CkDi0YaxR_BXKzKKlpS98yaYHEC73ENCZLYC6v0B45c8bA:1ppPnL:tLAddhOwZCbXQ6r2-_pI3czcckkQ1JvD0fLJTbUqaaU", - "expire_date": "2023-05-04T08:37:35.681Z" + "session_data": ".eJxVjMEOgyAQRP-Fc2NYFpD2Vn-ELMsaTQ0mFU5N_73aeGiP82bmvVSkVqfYNnnGOaubMkZdfmEifkg5GlqWA3fEvLZSu-_mrLfuvicpdWaq81qG8_Wnmmibdk-S5IE0IztvHYI4CkDi0YaxR_BXKzKKlpS98yaYHEC73ENCZLYC6v0B45c8bA:1ppPnL:tLAddhOwZCbXQ6r2-_pI3czcckkQ1JvD0fLJTbUqaaU", + "expire_date": "2023-05-04T08:37:35.681Z" } -}, -{ + }, + { "model": "sessions.session", "pk": "vi0mcac2q2xamblpgc684mc9e7pa3taw", "fields": { - "session_data": ".eJxVjEEOwiAURO_C2hCk8AF39iLk84FAbGgidGW8u63pQpfz3sy8mMdtFL_19PQ1shtTil1-YUB6pHYYXJYDcyRatzb4t3Pqzu97Sm1UwlHXNp-rv6uCvew_FoECSCVcSAooAiXtUpbZSpODimYCAqcdOm13JY0Vxlw1iCDiFKNi7w_vSDxt:1piaoS:yGQZ1-RBbvBElxeXrdlH2KidLSh-zOVQfL1IfzgOppc", - "expire_date": "2023-04-15T12:58:32.537Z" + "session_data": ".eJxVjEEOwiAURO_C2hCk8AF39iLk84FAbGgidGW8u63pQpfz3sy8mMdtFL_19PQ1shtTil1-YUB6pHYYXJYDcyRatzb4t3Pqzu97Sm1UwlHXNp-rv6uCvew_FoECSCVcSAooAiXtUpbZSpODimYCAqcdOm13JY0Vxlw1iCDiFKNi7w_vSDxt:1piaoS:yGQZ1-RBbvBElxeXrdlH2KidLSh-zOVQfL1IfzgOppc", + "expire_date": "2023-04-15T12:58:32.537Z" } -}, -{ + }, + { "model": "sites.site", "fields": { - "domain": "localhost", - "name": "localhost" + "domain": "localhost", + "name": "localhost" } -}, -{ + }, + { "model": "sites.site", "fields": { - "domain": "sel2-4.ugent.be", - "name": "sel2-4.ugent.be" + "domain": "sel2-4.ugent.be", + "name": "sel2-4.ugent.be" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 1, "fields": { - "token": 34, - "blacklisted_at": "2023-04-19T20:30:21.420Z" + "token": 34, + "blacklisted_at": "2023-04-19T20:30:21.420Z" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 2, "fields": { - "token": 36, - "blacklisted_at": "2023-04-19T22:12:35.202Z" + "token": 36, + "blacklisted_at": "2023-04-19T22:12:35.202Z" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 3, "fields": { - "token": 37, - "blacklisted_at": "2023-04-20T08:01:20.146Z" + "token": 37, + "blacklisted_at": "2023-04-20T08:01:20.146Z" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 4, "fields": { - "token": 39, - "blacklisted_at": "2023-04-20T11:13:48.490Z" + "token": 39, + "blacklisted_at": "2023-04-20T11:13:48.490Z" } -}, -{ + }, + { "model": "base.region", "pk": 1, "fields": { - "region": "Gent" + "region": "Gent" } -}, -{ + }, + { "model": "base.region", "pk": 2, "fields": { - "region": "Antwerpen" + "region": "Antwerpen" } -}, -{ + }, + { "model": "base.region", "pk": 3, "fields": { - "region": "Brugge" + "region": "Brugge" } -}, -{ + }, + { "model": "base.role", "pk": 1, "fields": { - "name": "Default", - "rank": 2147483647, - "description": "The default role" + "name": "Default", + "rank": 2147483647, + "description": "The default role" } -}, -{ + }, + { "model": "base.role", "pk": 2, "fields": { - "name": "Admin", - "rank": 1, - "description": "The admin role" + "name": "Admin", + "rank": 1, + "description": "The admin role" } -}, -{ + }, + { "model": "base.role", "pk": 3, "fields": { - "name": "Superstudent", - "rank": 2, - "description": "The superstudent role" + "name": "Superstudent", + "rank": 2, + "description": "The superstudent role" } -}, -{ + }, + { "model": "base.role", "pk": 4, "fields": { - "name": "Student", - "rank": 3, - "description": "The student role" + "name": "Student", + "rank": 3, + "description": "The student role" } -}, -{ + }, + { "model": "base.role", "pk": 5, "fields": { - "name": "Syndic", - "rank": 3, - "description": "The syndic role" + "name": "Syndic", + "rank": 3, + "description": "The syndic role" } -}, -{ + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$h8HANFi7B7Tdf2C83kS23G$2YBNlmr2Frrf0O5ZAK8oreR3NpRtahdoAK/d/r6pG1A=", - "last_login": "2023-03-21T21:17:46.173Z", - "is_superuser": false, - "email": "sylvie@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylvie", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$h8HANFi7B7Tdf2C83kS23G$2YBNlmr2Frrf0O5ZAK8oreR3NpRtahdoAK/d/r6pG1A=", + "last_login": "2023-03-21T21:17:46.173Z", + "is_superuser": false, + "email": "sylvie@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylvie", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$eMbH3Z8YUsRPQJVlB3cU9I$8/qb8N6xGzvWXtwsq+opnlZgBkRfg28odZ0n5LkS0sk=", - "last_login": "2023-03-08T14:26:37Z", - "is_superuser": false, - "email": "sydney@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sydney", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$eMbH3Z8YUsRPQJVlB3cU9I$8/qb8N6xGzvWXtwsq+opnlZgBkRfg28odZ0n5LkS0sk=", + "last_login": "2023-03-08T14:26:37Z", + "is_superuser": false, + "email": "sydney@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sydney", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$NbeM1Nb03rlBDewUpjaoRK$MuGG2gNblnAslUP45cNlDEEzHbdSxt/AUhKbVysdp6s=", - "last_login": "2023-03-08T14:27:09Z", - "is_superuser": false, - "email": "sylvano@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylvano", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$NbeM1Nb03rlBDewUpjaoRK$MuGG2gNblnAslUP45cNlDEEzHbdSxt/AUhKbVysdp6s=", + "last_login": "2023-03-08T14:27:09Z", + "is_superuser": false, + "email": "sylvano@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylvano", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$yf4lja2lMRou1Nm8nfkS24$tgMzzynF9OP+MN2XpDL4B/eTQKdtzyVKK7TD5lEz7xw=", - "last_login": "2023-03-08T14:28:16Z", - "is_superuser": false, - "email": "sylke@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylke", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$yf4lja2lMRou1Nm8nfkS24$tgMzzynF9OP+MN2XpDL4B/eTQKdtzyVKK7TD5lEz7xw=", + "last_login": "2023-03-08T14:28:16Z", + "is_superuser": false, + "email": "sylke@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylke", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$600000$P8azaB6ftFYdCB1sjJWt1c$NSF9FnmSjZpFerYGmVxA9+XQTD55iV5t8efdgZ47HXU=", - "last_login": "2023-03-08T14:28:42Z", - "is_superuser": false, - "email": "sylvian@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylvian", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$600000$P8azaB6ftFYdCB1sjJWt1c$NSF9FnmSjZpFerYGmVxA9+XQTD55iV5t8efdgZ47HXU=", + "last_login": "2023-03-08T14:28:42Z", + "is_superuser": false, + "email": "sylvian@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylvian", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$BNwYbvuhtJYoNwocNIiuFR$KIkBwvVwddo4vhz/J5Z7o87T/vPiKFyC+oFM+ury9Hg=", - "last_login": "2023-03-08T14:30:24Z", - "is_superuser": false, - "email": "stijn@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stijn", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$BNwYbvuhtJYoNwocNIiuFR$KIkBwvVwddo4vhz/J5Z7o87T/vPiKFyC+oFM+ury9Hg=", + "last_login": "2023-03-08T14:30:24Z", + "is_superuser": false, + "email": "stijn@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stijn", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$byXw7YCysrkmOkrGlqwj9e$6zDq0gQc/8chk1Thb4hs70x8+HBkGU1HKSSEqD18V1o=", - "last_login": "2023-03-08T14:30:41Z", - "is_superuser": false, - "email": "stef@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stef", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$byXw7YCysrkmOkrGlqwj9e$6zDq0gQc/8chk1Thb4hs70x8+HBkGU1HKSSEqD18V1o=", + "last_login": "2023-03-08T14:30:41Z", + "is_superuser": false, + "email": "stef@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stef", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$dzGAbxGvpIktcFY3Na3gzN$hZvjMM+jtENVtw6B0kW37txlgvR7zB36BuUokGWpZmw=", - "last_login": "2023-03-08T14:31:00Z", - "is_superuser": false, - "email": "stephan@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stephan", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$dzGAbxGvpIktcFY3Na3gzN$hZvjMM+jtENVtw6B0kW37txlgvR7zB36BuUokGWpZmw=", + "last_login": "2023-03-08T14:31:00Z", + "is_superuser": false, + "email": "stephan@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stephan", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$GywaqnFDEVEkOxqcmqFbcX$EnYKANh1YlKRf+hSB/P3ptmSpgmsf+JyUPaSNSjxyoQ=", - "last_login": "2023-03-08T14:31:13Z", - "is_superuser": false, - "email": "steven@test.com", - "is_staff": false, - "is_active": true, - "first_name": "steven", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$GywaqnFDEVEkOxqcmqFbcX$EnYKANh1YlKRf+hSB/P3ptmSpgmsf+JyUPaSNSjxyoQ=", + "last_login": "2023-03-08T14:31:13Z", + "is_superuser": false, + "email": "steven@test.com", + "is_staff": false, + "is_active": true, + "first_name": "steven", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$AMNu9ujtWd16u5z1zaW6JJ$EqE1eiUMjAyHL93NBfWyRJME2x+dSfVOGozVqgGtf0A=", - "last_login": "2023-03-08T14:32:10Z", - "is_superuser": false, - "email": "sten@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sten", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$AMNu9ujtWd16u5z1zaW6JJ$EqE1eiUMjAyHL93NBfWyRJME2x+dSfVOGozVqgGtf0A=", + "last_login": "2023-03-08T14:32:10Z", + "is_superuser": false, + "email": "sten@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sten", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$0zOt0mhGugAVg3lbplpMQW$enmZS+ykYIMqBpsxjDuelcicTb8VuQozJD+E5CBLQwY=", - "last_login": "2023-03-08T14:32:37Z", - "is_superuser": false, - "email": "sterre@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sterre", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$0zOt0mhGugAVg3lbplpMQW$enmZS+ykYIMqBpsxjDuelcicTb8VuQozJD+E5CBLQwY=", + "last_login": "2023-03-08T14:32:37Z", + "is_superuser": false, + "email": "sterre@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sterre", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$txsz57xK6zuxoRCqPvbflu$cbZ15oMhfWceRxNzrU2qr+mZQOmusdwPh3uX/60JO94=", - "last_login": "2023-03-08T14:32:47Z", - "is_superuser": false, - "email": "stella@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stella", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$txsz57xK6zuxoRCqPvbflu$cbZ15oMhfWceRxNzrU2qr+mZQOmusdwPh3uX/60JO94=", + "last_login": "2023-03-08T14:32:47Z", + "is_superuser": false, + "email": "stella@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stella", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$HhlA3K1bMVF5qy0NIxvKBC$ic0OKcT5SnhO60BSBnCBGz1Ges13amEuBz1H9MTl+oo=", - "last_login": "2023-03-08T14:32:59Z", - "is_superuser": false, - "email": "stefanie@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stefanie", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$HhlA3K1bMVF5qy0NIxvKBC$ic0OKcT5SnhO60BSBnCBGz1Ges13amEuBz1H9MTl+oo=", + "last_login": "2023-03-08T14:32:59Z", + "is_superuser": false, + "email": "stefanie@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stefanie", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$4u9eKSAcywwYYPeFZVv91O$eE7l84LghCmXq7YJxJ0Uem2r+rC7gb3cUK2GBXF0XMo=", - "last_login": "2023-03-08T14:33:08Z", - "is_superuser": false, - "email": "stacey@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stacey", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$4u9eKSAcywwYYPeFZVv91O$eE7l84LghCmXq7YJxJ0Uem2r+rC7gb3cUK2GBXF0XMo=", + "last_login": "2023-03-08T14:33:08Z", + "is_superuser": false, + "email": "stacey@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stacey", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$0eKqjM6Bc3DYFdtR86oQ2y$MhFYJgQGphSo0g4uPKjYBqWRtuudF+RV45T0LltdG5o=", - "last_login": "2023-03-08T14:33:36Z", - "is_superuser": false, - "email": "stanford@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stanford", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$0eKqjM6Bc3DYFdtR86oQ2y$MhFYJgQGphSo0g4uPKjYBqWRtuudF+RV45T0LltdG5o=", + "last_login": "2023-03-08T14:33:36Z", + "is_superuser": false, + "email": "stanford@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stanford", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$A3PF4gDTzyhxBo0LhwktVK$csGfWiwbiPLWv+XbRlrSRB34wjfVJDZEQErhoyoZv1o=", - "last_login": "2023-03-21T22:16:40.718Z", - "is_superuser": true, - "email": "adam@test.com", - "is_staff": true, - "is_active": true, - "first_name": "adam", - "last_name": "test", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$A3PF4gDTzyhxBo0LhwktVK$csGfWiwbiPLWv+XbRlrSRB34wjfVJDZEQErhoyoZv1o=", + "last_login": "2023-03-21T22:16:40.718Z", + "is_superuser": true, + "email": "adam@test.com", + "is_staff": true, + "is_active": true, + "first_name": "adam", + "last_name": "test", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$feAcIOeHIeYScG387l2rEf$kGrH6DpsVQAzIYT5GTpwSoSF16fuosXbSb9K009etjg=", - "last_login": "2023-03-08T14:34:39Z", - "is_superuser": true, - "email": "adriana@test.com", - "is_staff": true, - "is_active": true, - "first_name": "adriana", - "last_name": "test", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$feAcIOeHIeYScG387l2rEf$kGrH6DpsVQAzIYT5GTpwSoSF16fuosXbSb9K009etjg=", + "last_login": "2023-03-08T14:34:39Z", + "is_superuser": true, + "email": "adriana@test.com", + "is_staff": true, + "is_active": true, + "first_name": "adriana", + "last_name": "test", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$vhogqyr2pJaL6WBPxxtzi3$8hdgFYzj5P0VZ5DdKX3GbU6S4ir+MKvDuJw+IxXWUps=", - "last_login": "2023-03-08T14:34:56Z", - "is_superuser": true, - "email": "adelynn@test.com", - "is_staff": true, - "is_active": true, - "first_name": "adelynn", - "last_name": "test", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$vhogqyr2pJaL6WBPxxtzi3$8hdgFYzj5P0VZ5DdKX3GbU6S4ir+MKvDuJw+IxXWUps=", + "last_login": "2023-03-08T14:34:56Z", + "is_superuser": true, + "email": "adelynn@test.com", + "is_staff": true, + "is_active": true, + "first_name": "adelynn", + "last_name": "test", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$UFrlHyLlYahe07tzEmsSGE$VW0Ljk/CUQ9sHdM0phhvJGB0h/gM3XVBZ/HFr/s3HFI=", - "last_login": "2023-03-08T14:35:58Z", - "is_superuser": false, - "email": "suzanne@test.com", - "is_staff": false, - "is_active": true, - "first_name": "suzanne", - "last_name": "test", - "phone_number": "+32485710347", - "role": 3, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$UFrlHyLlYahe07tzEmsSGE$VW0Ljk/CUQ9sHdM0phhvJGB0h/gM3XVBZ/HFr/s3HFI=", + "last_login": "2023-03-08T14:35:58Z", + "is_superuser": false, + "email": "suzanne@test.com", + "is_staff": false, + "is_active": true, + "first_name": "suzanne", + "last_name": "test", + "phone_number": "+32485710347", + "role": 3, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$IdFPf7AAgbNNbUr6WFusPg$HTOJKtUmfgJWakEiH8iTOseGhuvqnjDekbut7SYo1M4=", - "last_login": "2023-03-08T14:36:08Z", - "is_superuser": false, - "email": "suzy@test.com", - "is_staff": false, - "is_active": true, - "first_name": "suzy", - "last_name": "test", - "phone_number": "+32485710347", - "role": 3, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$IdFPf7AAgbNNbUr6WFusPg$HTOJKtUmfgJWakEiH8iTOseGhuvqnjDekbut7SYo1M4=", + "last_login": "2023-03-08T14:36:08Z", + "is_superuser": false, + "email": "suzy@test.com", + "is_staff": false, + "is_active": true, + "first_name": "suzy", + "last_name": "test", + "phone_number": "+32485710347", + "role": 3, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$9p0V9GsM63gajT3c3xv5rc$BCuQQLRQDpuiySMdobkBQnKv37rIUQyc3I8rI47SXU0=", - "last_login": "2023-03-08T14:36:25Z", - "is_superuser": false, - "email": "suffried@test.com", - "is_staff": false, - "is_active": false, - "first_name": "suffried", - "last_name": "test", - "phone_number": "+32485710347", - "role": 3, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$9p0V9GsM63gajT3c3xv5rc$BCuQQLRQDpuiySMdobkBQnKv37rIUQyc3I8rI47SXU0=", + "last_login": "2023-03-08T14:36:25Z", + "is_superuser": false, + "email": "suffried@test.com", + "is_staff": false, + "is_active": false, + "first_name": "suffried", + "last_name": "test", + "phone_number": "+32485710347", + "role": 3, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$600000$b1a7I4XTFcwAp1HbW6ZcLB$DK5/usk4REL+kbR0iQfYlQ4Z/s46bCRkDTU627YchZM=", - "last_login": "2023-04-20T08:37:35.674Z", - "is_superuser": true, - "email": "admin@test.com", - "is_staff": true, - "is_active": true, - "first_name": "joe", - "last_name": "joe", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 3 - ] - } -}, -{ + "password": "pbkdf2_sha256$600000$b1a7I4XTFcwAp1HbW6ZcLB$DK5/usk4REL+kbR0iQfYlQ4Z/s46bCRkDTU627YchZM=", + "last_login": "2023-04-20T08:37:35.674Z", + "is_superuser": true, + "email": "admin@test.com", + "is_staff": true, + "is_active": true, + "first_name": "joe", + "last_name": "joe", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 3 + ] + } + }, + { "model": "base.building", "pk": 1, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 1, - "bus": "No bus", - "client_number": "48943513", - "duration": "00:30:00", - "syndic": [ - "sylke@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 1, + "bus": "No bus", + "client_number": "48943513", + "duration": "00:30:00", + "syndic": [ + "sylke@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 2, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 1, - "bus": "No bus", - "client_number": null, - "duration": "00:45:00", - "syndic": [ - "sylvano@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 1, + "bus": "No bus", + "client_number": null, + "duration": "00:45:00", + "syndic": [ + "sylvano@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 3, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Universiteitsplein", - "house_number": 1, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Universiteitsplein", + "house_number": 1, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 4, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Groenenborgerlaan", - "house_number": 171, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Groenenborgerlaan", + "house_number": 171, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 5, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Middelheimlaan", - "house_number": 1, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Middelheimlaan", + "house_number": 1, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 6, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Prinsstraat", - "house_number": 13, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Prinsstraat", + "house_number": 13, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 7, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Krijgslaan", - "house_number": 281, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Krijgslaan", + "house_number": 281, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 8, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Karel Lodewijk Ledeganckstraat", - "house_number": 35, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Karel Lodewijk Ledeganckstraat", + "house_number": 35, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 9, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Tweekerkenstraat", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Tweekerkenstraat", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 10, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Sint-Pietersnieuwstraat", - "house_number": 33, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Sint-Pietersnieuwstraat", + "house_number": 33, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 11, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 12, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 3, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 3, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 13, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 4, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvano@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 4, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvano@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 14, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 15, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 3, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 3, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 16, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 4, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": "Markt Antwerpen", - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 4, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": "Markt Antwerpen", + "public_id": null + } + }, + { "model": "base.building", "pk": 18, "fields": { - "city": "Brugge", - "postal_code": "8000", - "street": "steenstraat", - "house_number": 6, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": null, - "name": null, - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8000", + "street": "steenstraat", + "house_number": 6, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": null, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 19, "fields": { - "city": "Brugge", - "postal_code": "8310", - "street": "'t Zand", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 3, - "name": null, - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8310", + "street": "'t Zand", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 3, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 20, "fields": { - "city": "Brugge", - "postal_code": "8000", - "street": "Palingstraat", - "house_number": 42, - "bus": "", - "client_number": "648492H895420", - "duration": "00:10:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 3, - "name": "Brugge - Palingstraat", - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8000", + "street": "Palingstraat", + "house_number": 42, + "bus": "", + "client_number": "648492H895420", + "duration": "00:10:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 3, + "name": "Brugge - Palingstraat", + "public_id": null + } + }, + { "model": "base.building", "pk": 21, "fields": { - "city": "Brugge", - "postal_code": "8000", - "street": "Stropersgracht", - "house_number": 32, - "bus": "", - "client_number": "7463820H587392", - "duration": "00:20:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 3, - "name": "Stropersgracht- Brugge", - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8000", + "street": "Stropersgracht", + "house_number": 32, + "bus": "", + "client_number": "7463820H587392", + "duration": "00:20:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 3, + "name": "Stropersgracht- Brugge", + "public_id": null + } + }, + { "model": "base.buildingcomment", "pk": 2, "fields": { - "comment": "De deur is moeilijk te openen.", - "date": "2023-04-20T09:00:08Z", - "building": 1 + "comment": "De deur is moeilijk te openen.", + "date": "2023-04-20T09:00:08Z", + "building": 1 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 3, "fields": { - "comment": "De code van de poort is 1234.", - "date": "2023-04-20T09:01:59Z", - "building": 2 + "comment": "De code van de poort is 1234.", + "date": "2023-04-20T09:01:59Z", + "building": 2 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 4, "fields": { - "comment": "De containers staan in verschillende ruimtes.", - "date": "2023-04-20T09:02:26Z", - "building": 3 + "comment": "De containers staan in verschillende ruimtes.", + "date": "2023-04-20T09:02:26Z", + "building": 3 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 5, "fields": { - "comment": "Je moet langs de achterdeur van het gebouw binnen.", - "date": "2023-04-20T09:02:54Z", - "building": 4 + "comment": "Je moet langs de achterdeur van het gebouw binnen.", + "date": "2023-04-20T09:02:54Z", + "building": 4 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 6, "fields": { - "comment": "Bel aan bij bewoner op nummer 3, deze laat je binnen.", - "date": "2023-04-20T09:03:44Z", - "building": 11 + "comment": "Bel aan bij bewoner op nummer 3, deze laat je binnen.", + "date": "2023-04-20T09:03:44Z", + "building": 11 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 7, "fields": { - "comment": "De code van de poort is 5395", - "date": "2023-04-20T09:04:09Z", - "building": 12 + "comment": "De code van de poort is 5395", + "date": "2023-04-20T09:04:09Z", + "building": 12 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 8, "fields": { - "comment": "PMD en REST staan op het gelijkvloers, de rest in de kelder.", - "date": "2023-04-20T09:04:30Z", - "building": 13 + "comment": "PMD en REST staan op het gelijkvloers, de rest in de kelder.", + "date": "2023-04-20T09:04:30Z", + "building": 13 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 9, "fields": { - "comment": "Je moet langs de grote poort binnen.", - "date": "2023-04-20T09:04:49Z", - "building": 15 + "comment": "Je moet langs de grote poort binnen.", + "date": "2023-04-20T09:04:49Z", + "building": 15 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 10, "fields": { - "comment": "De containers hangen vast met een slot (code 7361)", - "date": "2023-04-20T09:05:37Z", - "building": 13 + "comment": "De containers hangen vast met een slot (code 7361)", + "date": "2023-04-20T09:05:37Z", + "building": 13 } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 1, "fields": { - "building": 1, - "date": "2023-03-08", - "garbage_type": "GFT" + "building": 1, + "date": "2023-03-08", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 5, "fields": { - "building": 16, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 16, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 6, "fields": { - "building": 1, - "date": "2023-03-09", - "garbage_type": "PMD" + "building": 1, + "date": "2023-03-09", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 7, "fields": { - "building": 15, - "date": "2023-03-09", - "garbage_type": "RES" + "building": 15, + "date": "2023-03-09", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 8, "fields": { - "building": 15, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 15, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 9, "fields": { - "building": 14, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 14, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 10, "fields": { - "building": 14, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 14, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 11, "fields": { - "building": 16, - "date": "2023-03-09", - "garbage_type": "GLS" + "building": 16, + "date": "2023-03-09", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 12, "fields": { - "building": 2, - "date": "2023-03-08", - "garbage_type": "GFT" + "building": 2, + "date": "2023-03-08", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 13, "fields": { - "building": 2, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 2, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 14, "fields": { - "building": 11, - "date": "2023-03-08", - "garbage_type": "PMD" + "building": 11, + "date": "2023-03-08", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 15, "fields": { - "building": 11, - "date": "2023-03-09", - "garbage_type": "GLS" + "building": 11, + "date": "2023-03-09", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 16, "fields": { - "building": 12, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 12, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 17, "fields": { - "building": 12, - "date": "2023-03-09", - "garbage_type": "PMD" + "building": 12, + "date": "2023-03-09", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 18, "fields": { - "building": 13, - "date": "2023-03-08", - "garbage_type": "GRF" + "building": 13, + "date": "2023-03-08", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 19, "fields": { - "building": 13, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 13, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 20, "fields": { - "building": 7, - "date": "2023-03-08", - "garbage_type": "GFT" + "building": 7, + "date": "2023-03-08", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 21, "fields": { - "building": 7, - "date": "2023-03-09", - "garbage_type": "GRF" + "building": 7, + "date": "2023-03-09", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 22, "fields": { - "building": 10, - "date": "2023-03-08", - "garbage_type": "GRF" + "building": 10, + "date": "2023-03-08", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 23, "fields": { - "building": 10, - "date": "2023-03-09", - "garbage_type": "PAP" + "building": 10, + "date": "2023-03-09", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 24, "fields": { - "building": 9, - "date": "2023-03-08", - "garbage_type": "PMD" + "building": 9, + "date": "2023-03-08", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 25, "fields": { - "building": 9, - "date": "2023-03-09", - "garbage_type": "RES" + "building": 9, + "date": "2023-03-09", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 26, "fields": { - "building": 8, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 8, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 27, "fields": { - "building": 8, - "date": "2023-03-08", - "garbage_type": "GLS" + "building": 8, + "date": "2023-03-08", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 28, "fields": { - "building": 6, - "date": "2023-03-08", - "garbage_type": "GLS" + "building": 6, + "date": "2023-03-08", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 29, "fields": { - "building": 6, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 6, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 30, "fields": { - "building": 5, - "date": "2023-03-08", - "garbage_type": "PMD" + "building": 5, + "date": "2023-03-08", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 31, "fields": { - "building": 5, - "date": "2023-03-09", - "garbage_type": "GRF" + "building": 5, + "date": "2023-03-09", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 32, "fields": { - "building": 4, - "date": "2023-03-08", - "garbage_type": "GLS" + "building": 4, + "date": "2023-03-08", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 33, "fields": { - "building": 4, - "date": "2023-03-09", - "garbage_type": "RES" + "building": 4, + "date": "2023-03-09", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 34, "fields": { - "building": 3, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 3, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 35, "fields": { - "building": 3, - "date": "2023-03-09", - "garbage_type": "GFT" + "building": 3, + "date": "2023-03-09", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 36, "fields": { - "building": 2, - "date": "2023-04-20", - "garbage_type": "GRF" + "building": 2, + "date": "2023-04-20", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 37, "fields": { - "building": 2, - "date": "2023-04-20", - "garbage_type": "GLS" + "building": 2, + "date": "2023-04-20", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 38, "fields": { - "building": 2, - "date": "2023-04-21", - "garbage_type": "PAP" + "building": 2, + "date": "2023-04-21", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 39, "fields": { - "building": 2, - "date": "2023-04-21", - "garbage_type": "PMD" + "building": 2, + "date": "2023-04-21", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 40, "fields": { - "building": 11, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 11, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 41, "fields": { - "building": 11, - "date": "2023-04-20", - "garbage_type": "GFT" + "building": 11, + "date": "2023-04-20", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 42, "fields": { - "building": 11, - "date": "2023-04-21", - "garbage_type": "PMD" + "building": 11, + "date": "2023-04-21", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 43, "fields": { - "building": 12, - "date": "2023-04-20", - "garbage_type": "GLS" + "building": 12, + "date": "2023-04-20", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 44, "fields": { - "building": 12, - "date": "2023-04-21", - "garbage_type": "PMD" + "building": 12, + "date": "2023-04-21", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 45, "fields": { - "building": 12, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 12, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 46, "fields": { - "building": 13, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 13, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 47, "fields": { - "building": 13, - "date": "2023-04-20", - "garbage_type": "PAP" + "building": 13, + "date": "2023-04-20", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 48, "fields": { - "building": 13, - "date": "2023-04-21", - "garbage_type": "GRF" + "building": 13, + "date": "2023-04-21", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 49, "fields": { - "building": 20, - "date": "2023-04-20", - "garbage_type": "GRF" + "building": 20, + "date": "2023-04-20", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 50, "fields": { - "building": 19, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 19, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 51, "fields": { - "building": 20, - "date": "2023-04-21", - "garbage_type": "GLS" + "building": 20, + "date": "2023-04-21", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 52, "fields": { - "building": 21, - "date": "2023-04-21", - "garbage_type": "GFT" + "building": 21, + "date": "2023-04-21", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 53, "fields": { - "building": 21, - "date": "2023-04-20", - "garbage_type": "GLS" + "building": 21, + "date": "2023-04-20", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 54, "fields": { - "building": 20, - "date": "2023-04-21", - "garbage_type": "GFT" + "building": 20, + "date": "2023-04-21", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.tour", "pk": 1, "fields": { - "name": "Centrum", - "region": 1, - "modified_at": "2023-03-08T11:08:29Z" + "name": "Centrum", + "region": 1, + "modified_at": "2023-03-08T11:08:29Z" } -}, -{ + }, + { "model": "base.tour", "pk": 2, "fields": { - "name": "Grote Markt", - "region": 2, - "modified_at": "2023-03-08T11:08:45Z" + "name": "Grote Markt", + "region": 2, + "modified_at": "2023-03-08T11:08:45Z" } -}, -{ + }, + { "model": "base.tour", "pk": 3, "fields": { - "name": "UGent Campussen", - "region": 1, - "modified_at": "2023-03-08T14:58:43Z" + "name": "UGent Campussen", + "region": 1, + "modified_at": "2023-03-08T14:58:43Z" } -}, -{ + }, + { "model": "base.tour", "pk": 4, "fields": { - "name": "UAntwerpen Campussen", - "region": 2, - "modified_at": "2023-03-08T15:00:25Z" + "name": "UAntwerpen Campussen", + "region": 2, + "modified_at": "2023-03-08T15:00:25Z" } -}, -{ + }, + { "model": "base.buildingontour", "pk": 1, "fields": { - "tour": 2, - "building": 1, - "index": 1 + "tour": 2, + "building": 1, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 2, "fields": { - "tour": 1, - "building": 2, - "index": 1 + "tour": 1, + "building": 2, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 3, "fields": { - "tour": 4, - "building": 3, - "index": 1 + "tour": 4, + "building": 3, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 4, "fields": { - "tour": 4, - "building": 4, - "index": 2 + "tour": 4, + "building": 4, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 5, "fields": { - "tour": 4, - "building": 5, - "index": 3 + "tour": 4, + "building": 5, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 6, "fields": { - "tour": 4, - "building": 6, - "index": 4 + "tour": 4, + "building": 6, + "index": 4 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 7, "fields": { - "tour": 3, - "building": 7, - "index": 1 + "tour": 3, + "building": 7, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 8, "fields": { - "tour": 3, - "building": 10, - "index": 2 + "tour": 3, + "building": 10, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 9, "fields": { - "tour": 3, - "building": 9, - "index": 3 + "tour": 3, + "building": 9, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 10, "fields": { - "tour": 3, - "building": 8, - "index": 4 + "tour": 3, + "building": 8, + "index": 4 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 11, "fields": { - "tour": 1, - "building": 11, - "index": 2 + "tour": 1, + "building": 11, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 12, "fields": { - "tour": 1, - "building": 12, - "index": 3 + "tour": 1, + "building": 12, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 13, "fields": { - "tour": 1, - "building": 13, - "index": 4 + "tour": 1, + "building": 13, + "index": 4 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 14, "fields": { - "tour": 2, - "building": 14, - "index": 2 + "tour": 2, + "building": 14, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 15, "fields": { - "tour": 2, - "building": 15, - "index": 3 + "tour": 2, + "building": 15, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 16, "fields": { - "tour": 2, - "building": 16, - "index": 4 + "tour": 2, + "building": 16, + "index": 4 } -}, -{ + }, + { "model": "base.studentontour", "pk": 1, "fields": { - "tour": 1, - "date": "2023-04-01", - "student": [ - "stijn@test.com" - ] + "tour": 1, + "date": "2023-04-01", + "started_tour": "2023-04-01T00:00:00+02:00", + "completed_tour": "2023-04-01T00:35:00+02:00", + "student": [ + "stijn@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 2, "fields": { - "tour": 3, - "date": "2023-04-01", - "student": [ - "stef@test.com" - ] + "tour": 3, + "date": "2023-04-01", + "started_tour": "2023-04-01T00:00:00+02:00", + "completed_tour": "2023-04-01T00:35:00+02:00", + "student": [ + "stef@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 3, "fields": { - "tour": 1, - "date": "2023-04-18", - "student": [ - "steven@test.com" - ] + "tour": 1, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "steven@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 4, "fields": { - "tour": 1, - "date": "2023-04-11", - "student": [ - "stephan@test.com" - ] + "tour": 1, + "date": "2023-04-11", + "started_tour": "2023-04-11T00:00:00+02:00", + "completed_tour": "2023-04-11T00:35:00+02:00", + "student": [ + "stephan@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 5, "fields": { - "tour": 1, - "date": "2023-04-11", - "student": [ - "sten@test.com" - ] + "tour": 1, + "date": "2023-04-11", + "started_tour": "2023-04-11T00:00:00+02:00", + "completed_tour": "2023-04-11T00:35:00+02:00", + "student": [ + "sten@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 6, "fields": { - "tour": 1, - "date": "2023-04-24", - "student": [ - "stijn@test.com" - ] + "tour": 1, + "date": "2023-04-24", + "started_tour": "2023-04-24T00:00:00+02:00", + "completed_tour": "2023-04-24T00:35:00+02:00", + "student": [ + "stijn@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 7, "fields": { - "tour": 1, - "date": "2023-04-27", - "student": [ - "steven@test.com" - ] + "tour": 1, + "date": "2023-04-27", + "started_tour": "2023-04-27T00:00:00+02:00", + "completed_tour": "2023-04-27T00:35:00+02:00", + "student": [ + "steven@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 8, "fields": { - "tour": 1, - "date": "2023-04-22", - "student": [ - "sten@test.com" - ] + "tour": 1, + "date": "2023-04-22", + "started_tour": "2023-04-22T00:00:00+02:00", + "completed_tour": "2023-04-22T00:35:00+02:00", + "student": [ + "sten@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 9, "fields": { - "tour": 1, - "date": "2023-04-17", - "student": [ - "stijn@test.com" - ] + "tour": 1, + "date": "2023-04-17", + "started_tour": "2023-04-17T00:00:00+02:00", + "completed_tour": "2023-04-17T00:35:00+02:00", + "student": [ + "stijn@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 10, "fields": { - "tour": 2, - "date": "2023-04-10", - "student": [ - "stella@test.com" - ] + "tour": 2, + "date": "2023-04-10", + "started_tour": "2023-04-10T00:00:00+02:00", + "completed_tour": "2023-04-10T00:35:00+02:00", + "student": [ + "stella@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 11, "fields": { - "tour": 4, - "date": "2023-04-19", - "student": [ - "stefanie@test.com" - ] + "tour": 4, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "stefanie@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 12, "fields": { - "tour": 2, - "date": "2023-04-19", - "student": [ - "stacey@test.com" - ] + "tour": 2, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 13, "fields": { - "tour": 2, - "date": "2023-04-18", - "student": [ - "stefanie@test.com" - ] + "tour": 2, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "stefanie@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 14, "fields": { - "tour": 4, - "date": "2023-04-26", - "student": [ - "stella@test.com" - ] + "tour": 4, + "date": "2023-04-26", + "started_tour": "2023-04-26T00:00:00+02:00", + "completed_tour": "2023-04-26T00:35:00+02:00", + "student": [ + "stella@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 15, "fields": { - "tour": 4, - "date": "2023-04-10", - "student": [ - "stacey@test.com" - ] + "tour": 4, + "date": "2023-04-10", + "started_tour": "2023-04-10T00:00:00+02:00", + "completed_tour": "2023-04-10T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 16, "fields": { - "tour": 1, - "date": "2023-04-04", - "student": [ - "stanford@test.com" - ] + "tour": 1, + "date": "2023-04-04", + "started_tour": "2023-04-04T00:00:00+02:00", + "completed_tour": "2023-04-04T00:35:00+02:00", + "student": [ + "stanford@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 17, "fields": { - "tour": 4, - "date": "2023-04-16", - "student": [ - "sterre@test.com" - ] + "tour": 4, + "date": "2023-04-16", + "started_tour": "2023-04-16T00:00:00+02:00", + "completed_tour": "2023-04-16T00:35:00+02:00", + "student": [ + "sterre@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 18, "fields": { - "tour": 1, - "date": "2023-04-19", - "student": [ - "stephan@test.com" - ] + "tour": 1, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "stephan@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 19, "fields": { - "tour": 4, - "date": "2023-04-20", - "student": [ - "stefanie@test.com" - ] + "tour": 4, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "stefanie@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 20, "fields": { - "tour": 2, - "date": "2023-04-20", - "student": [ - "stella@test.com" - ] + "tour": 2, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "stella@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 21, "fields": { - "tour": 1, - "date": "2023-04-20", - "student": [ - "stanford@test.com" - ] + "tour": 1, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "stanford@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 22, "fields": { - "tour": 3, - "date": "2023-04-20", - "student": [ - "steven@test.com" - ] + "tour": 3, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "steven@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 24, "fields": { - "tour": 2, - "date": "2023-04-21", - "student": [ - "sterre@test.com" - ] + "tour": 2, + "date": "2023-04-21", + "started_tour": "2023-04-21T00:00:00+02:00", + "completed_tour": "2023-04-21T00:35:00+02:00", + "student": [ + "sterre@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 25, "fields": { - "tour": 4, - "date": "2023-04-21", - "student": [ - "stacey@test.com" - ] + "tour": 4, + "date": "2023-04-21", + "started_tour": "2023-04-21T00:00:00+02:00", + "completed_tour": "2023-04-21T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 26, "fields": { - "tour": 3, - "date": "2023-04-21", - "student": [ - "stef@test.com" - ] + "tour": 3, + "date": "2023-04-21", + "started_tour": "2023-04-21T00:00:00+02:00", + "completed_tour": "2023-04-21T00:35:00+02:00", + "student": [ + "stef@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 52, "fields": { - "tour": 1, - "date": "2023-04-18", - "student": [ - "stanford@test.com" - ] + "tour": 1, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "stanford@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 53, "fields": { - "tour": 2, - "date": "2023-04-17", - "student": [ - "stella@test.com" - ] + "tour": 2, + "date": "2023-04-17", + "started_tour": "2023-04-17T00:00:00+02:00", + "completed_tour": "2023-04-17T00:35:00+02:00", + "student": [ + "stella@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 54, "fields": { - "tour": 3, - "date": "2023-04-19", - "student": [ - "sten@test.com" - ] + "tour": 3, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "sten@test.com" + ] } -}, -{ + }, + { "model": "base.studentontour", "pk": 55, "fields": { - "tour": 2, - "date": "2023-04-18", - "student": [ - "stacey@test.com" - ] + "tour": 2, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] } -}, -{ - "model": "base.remarkatbuilding", - "pk": 15, - "fields": { - "student_on_tour": 4, - "building": 2, - "timestamp": "2023-04-20T10:33:39Z", - "remark": "Aankomst", - "type": "AA" - } -}, -{ + }, + { "model": "base.remarkatbuilding", "pk": 16, "fields": { - "student_on_tour": 9, - "building": 12, - "timestamp": "2023-04-20T10:33:57Z", - "remark": "Binnen", - "type": "BI" + "student_on_tour": 9, + "building": 12, + "timestamp": "2023-04-20T10:33:57Z", + "remark": "Binnen", + "type": "BI" } -}, -{ + }, + { "model": "base.remarkatbuilding", "pk": 17, "fields": { - "student_on_tour": 13, - "building": 15, - "timestamp": "2023-04-24T10:34:17Z", - "remark": "Een bewoner zei me dat er niet gesorteerd wordt.", - "type": "OP" + "student_on_tour": 13, + "building": 15, + "timestamp": "2023-04-24T10:34:17Z", + "remark": "Een bewoner zei me dat er niet gesorteerd wordt.", + "type": "OP" } -}, -{ + }, + { "model": "base.remarkatbuilding", "pk": 18, "fields": { - "student_on_tour": 11, - "building": 4, - "timestamp": "2023-04-20T11:24:39Z", - "remark": "De deur is geblokkeerd.", - "type": "OP" + "student_on_tour": 11, + "building": 4, + "timestamp": "2023-04-20T11:24:39Z", + "remark": "De deur is geblokkeerd.", + "type": "OP" } -}, -{ + }, + { "model": "base.remarkatbuilding", "pk": 19, "fields": { - "student_on_tour": 3, - "building": 11, - "timestamp": "2023-04-20T11:25:16Z", - "remark": "Vertrek", - "type": "VE" + "student_on_tour": 3, + "building": 11, + "timestamp": "2023-04-20T11:25:16Z", + "remark": "Vertrek", + "type": "VE" } -}, -{ + }, + { "model": "base.emailtemplate", "pk": 1, "fields": { - "name": "Containers 404", - "template": "Beste,\r\n\r\n\r\nDrTrottoir kon uw containers niet buitenzetten, omdat deze niet op de afgesproken plaats stonden.\r\n\r\nSurf naar de link van uw gebouw om de foto's te raadplegen.\r\n\r\n\r\nMet vriendelijke groeten,\r\nTeam DrTrottoir" + "name": "Containers 404", + "template": "Beste,\r\n\r\n\r\nDrTrottoir kon uw containers niet buitenzetten, omdat deze niet op de afgesproken plaats stonden.\r\n\r\nSurf naar de link van uw gebouw om de foto's te raadplegen.\r\n\r\n\r\nMet vriendelijke groeten,\r\nTeam DrTrottoir" } -}, -{ + }, + { "model": "base.emailtemplate", "pk": 2, "fields": { - "name": "Staking IVAGO", - "template": "Beste,\r\n\r\n\r\nZoals u wellicht al vernomen hebt, staken de vuilnismannen -en vrouwen van IVAGO.\r\n\r\nDrTrottoir zal dus uitzonderlijk niet langskomen om uw containers buiten te zetten.\r\n\r\n\r\nMet vriendelijke groeten,\r\nDrTrottoir" + "name": "Staking IVAGO", + "template": "Beste,\r\n\r\n\r\nZoals u wellicht al vernomen hebt, staken de vuilnismannen -en vrouwen van IVAGO.\r\n\r\nDrTrottoir zal dus uitzonderlijk niet langskomen om uw containers buiten te zetten.\r\n\r\n\r\nMet vriendelijke groeten,\r\nDrTrottoir" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 1, "fields": { - "user": null, - "jti": "a195fc2e7bd2401ea22fda9d83850779", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg3NCwiaWF0IjoxNjc4MjczMjc0LCJqdGkiOiJhMTk1ZmMyZTdiZDI0MDFlYTIyZmRhOWQ4Mzg1MDc3OSIsInVzZXJfaWQiOjJ9.IMc_u4M0O-eOhmj0VneNZV6rob68vbdzBDKTyvPtu38", - "created_at": "2023-03-08T11:01:14.548Z", - "expires_at": "2023-03-22T11:01:14Z" + "user": null, + "jti": "a195fc2e7bd2401ea22fda9d83850779", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg3NCwiaWF0IjoxNjc4MjczMjc0LCJqdGkiOiJhMTk1ZmMyZTdiZDI0MDFlYTIyZmRhOWQ4Mzg1MDc3OSIsInVzZXJfaWQiOjJ9.IMc_u4M0O-eOhmj0VneNZV6rob68vbdzBDKTyvPtu38", + "created_at": "2023-03-08T11:01:14.548Z", + "expires_at": "2023-03-22T11:01:14Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 2, "fields": { - "user": null, - "jti": "124b7a3ac2654ad7b22d5dadee830693", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg5NCwiaWF0IjoxNjc4MjczMjk0LCJqdGkiOiIxMjRiN2EzYWMyNjU0YWQ3YjIyZDVkYWRlZTgzMDY5MyIsInVzZXJfaWQiOjN9._jd_jI10naYOQdIxGp3nSsacPaQN1CblJiMO_42MmNU", - "created_at": "2023-03-08T11:01:34.702Z", - "expires_at": "2023-03-22T11:01:34Z" + "user": null, + "jti": "124b7a3ac2654ad7b22d5dadee830693", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg5NCwiaWF0IjoxNjc4MjczMjk0LCJqdGkiOiIxMjRiN2EzYWMyNjU0YWQ3YjIyZDVkYWRlZTgzMDY5MyIsInVzZXJfaWQiOjN9._jd_jI10naYOQdIxGp3nSsacPaQN1CblJiMO_42MmNU", + "created_at": "2023-03-08T11:01:34.702Z", + "expires_at": "2023-03-22T11:01:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 3, "fields": { - "user": null, - "jti": "d3825c9a4f074327a9f6832a9b54743a", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4MjkxOSwiaWF0IjoxNjc4MjczMzE5LCJqdGkiOiJkMzgyNWM5YTRmMDc0MzI3YTlmNjgzMmE5YjU0NzQzYSIsInVzZXJfaWQiOjR9.vM_cNpsJPBy21_4c_XCaFuZvHAFJU-z9k2TJj0xUr3E", - "created_at": "2023-03-08T11:01:59.707Z", - "expires_at": "2023-03-22T11:01:59Z" + "user": null, + "jti": "d3825c9a4f074327a9f6832a9b54743a", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4MjkxOSwiaWF0IjoxNjc4MjczMzE5LCJqdGkiOiJkMzgyNWM5YTRmMDc0MzI3YTlmNjgzMmE5YjU0NzQzYSIsInVzZXJfaWQiOjR9.vM_cNpsJPBy21_4c_XCaFuZvHAFJU-z9k2TJj0xUr3E", + "created_at": "2023-03-08T11:01:59.707Z", + "expires_at": "2023-03-22T11:01:59Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 4, "fields": { - "user": null, - "jti": "20286babfa6a4c768f6edb4ab9da6fe7", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk1MSwiaWF0IjoxNjc4MjczMzUxLCJqdGkiOiIyMDI4NmJhYmZhNmE0Yzc2OGY2ZWRiNGFiOWRhNmZlNyIsInVzZXJfaWQiOjV9.wb468ciVP-CLyIy7w6Q4ivAIcXCszLPTG-yJWvdOwHA", - "created_at": "2023-03-08T11:02:31.902Z", - "expires_at": "2023-03-22T11:02:31Z" + "user": null, + "jti": "20286babfa6a4c768f6edb4ab9da6fe7", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk1MSwiaWF0IjoxNjc4MjczMzUxLCJqdGkiOiIyMDI4NmJhYmZhNmE0Yzc2OGY2ZWRiNGFiOWRhNmZlNyIsInVzZXJfaWQiOjV9.wb468ciVP-CLyIy7w6Q4ivAIcXCszLPTG-yJWvdOwHA", + "created_at": "2023-03-08T11:02:31.902Z", + "expires_at": "2023-03-22T11:02:31Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 5, "fields": { - "user": null, - "jti": "60594ba953c1489fb4863d17006bfe11", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk4MywiaWF0IjoxNjc4MjczMzgzLCJqdGkiOiI2MDU5NGJhOTUzYzE0ODlmYjQ4NjNkMTcwMDZiZmUxMSIsInVzZXJfaWQiOjZ9.MgyQe0yLxpXzzORVabq_kEwykczAxqfwaBg-e1Qw79Q", - "created_at": "2023-03-08T11:03:03.395Z", - "expires_at": "2023-03-22T11:03:03Z" + "user": null, + "jti": "60594ba953c1489fb4863d17006bfe11", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk4MywiaWF0IjoxNjc4MjczMzgzLCJqdGkiOiI2MDU5NGJhOTUzYzE0ODlmYjQ4NjNkMTcwMDZiZmUxMSIsInVzZXJfaWQiOjZ9.MgyQe0yLxpXzzORVabq_kEwykczAxqfwaBg-e1Qw79Q", + "created_at": "2023-03-08T11:03:03.395Z", + "expires_at": "2023-03-22T11:03:03Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 6, "fields": { - "user": null, - "jti": "c042eb4d94b645d7a8cd71baf5146499", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTA1NywiaWF0IjoxNjc4Mjg1NDU3LCJqdGkiOiJjMDQyZWI0ZDk0YjY0NWQ3YThjZDcxYmFmNTE0NjQ5OSIsInVzZXJfaWQiOjl9.U2BKOI0JwBMEXTsf-C6WTIELmEh_HAb6ytvhq2Owpx0", - "created_at": "2023-03-08T14:24:17.841Z", - "expires_at": "2023-03-22T14:24:17Z" + "user": null, + "jti": "c042eb4d94b645d7a8cd71baf5146499", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTA1NywiaWF0IjoxNjc4Mjg1NDU3LCJqdGkiOiJjMDQyZWI0ZDk0YjY0NWQ3YThjZDcxYmFmNTE0NjQ5OSIsInVzZXJfaWQiOjl9.U2BKOI0JwBMEXTsf-C6WTIELmEh_HAb6ytvhq2Owpx0", + "created_at": "2023-03-08T14:24:17.841Z", + "expires_at": "2023-03-22T14:24:17Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 7, "fields": { - "user": [ - "sylvie@test.com" - ], - "jti": "4ab2f439d29447c69548af90a355e5cb", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE2OCwiaWF0IjoxNjc4Mjg1NTY4LCJqdGkiOiI0YWIyZjQzOWQyOTQ0N2M2OTU0OGFmOTBhMzU1ZTVjYiIsInVzZXJfaWQiOjEwfQ.oM3ymBpn09bo2rnzCMt3A77EvLAvDYLbPpPQojWxfIk", - "created_at": "2023-03-08T14:26:08.612Z", - "expires_at": "2023-03-22T14:26:08Z" + "user": [ + "sylvie@test.com" + ], + "jti": "4ab2f439d29447c69548af90a355e5cb", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE2OCwiaWF0IjoxNjc4Mjg1NTY4LCJqdGkiOiI0YWIyZjQzOWQyOTQ0N2M2OTU0OGFmOTBhMzU1ZTVjYiIsInVzZXJfaWQiOjEwfQ.oM3ymBpn09bo2rnzCMt3A77EvLAvDYLbPpPQojWxfIk", + "created_at": "2023-03-08T14:26:08.612Z", + "expires_at": "2023-03-22T14:26:08Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 8, "fields": { - "user": [ - "sydney@test.com" - ], - "jti": "2e612182bf5a46f7a51e95ac26c68510", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE5NCwiaWF0IjoxNjc4Mjg1NTk0LCJqdGkiOiIyZTYxMjE4MmJmNWE0NmY3YTUxZTk1YWMyNmM2ODUxMCIsInVzZXJfaWQiOjExfQ.jgWA0qnic42iOQu4l8Ybiq00j1KnC_Te3bGs6eNY0AY", - "created_at": "2023-03-08T14:26:34.597Z", - "expires_at": "2023-03-22T14:26:34Z" + "user": [ + "sydney@test.com" + ], + "jti": "2e612182bf5a46f7a51e95ac26c68510", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE5NCwiaWF0IjoxNjc4Mjg1NTk0LCJqdGkiOiIyZTYxMjE4MmJmNWE0NmY3YTUxZTk1YWMyNmM2ODUxMCIsInVzZXJfaWQiOjExfQ.jgWA0qnic42iOQu4l8Ybiq00j1KnC_Te3bGs6eNY0AY", + "created_at": "2023-03-08T14:26:34.597Z", + "expires_at": "2023-03-22T14:26:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 9, "fields": { - "user": [ - "sylvano@test.com" - ], - "jti": "1da1f96e125a4da590458f2a5b736d99", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTIyNywiaWF0IjoxNjc4Mjg1NjI3LCJqdGkiOiIxZGExZjk2ZTEyNWE0ZGE1OTA0NThmMmE1YjczNmQ5OSIsInVzZXJfaWQiOjEyfQ.IFuNLKM5_lgvT8qS7zN3YjtgQrWptAUriGRfYX5Qekc", - "created_at": "2023-03-08T14:27:07.841Z", - "expires_at": "2023-03-22T14:27:07Z" + "user": [ + "sylvano@test.com" + ], + "jti": "1da1f96e125a4da590458f2a5b736d99", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTIyNywiaWF0IjoxNjc4Mjg1NjI3LCJqdGkiOiIxZGExZjk2ZTEyNWE0ZGE1OTA0NThmMmE1YjczNmQ5OSIsInVzZXJfaWQiOjEyfQ.IFuNLKM5_lgvT8qS7zN3YjtgQrWptAUriGRfYX5Qekc", + "created_at": "2023-03-08T14:27:07.841Z", + "expires_at": "2023-03-22T14:27:07Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 10, "fields": { - "user": [ - "sylke@test.com" - ], - "jti": "377080a0df7140f29579dbb3eecb48f2", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTI5NCwiaWF0IjoxNjc4Mjg1Njk0LCJqdGkiOiIzNzcwODBhMGRmNzE0MGYyOTU3OWRiYjNlZWNiNDhmMiIsInVzZXJfaWQiOjEzfQ.wV9vluo6_mWT5LY2pivTYrNfkybOk_hoP5Us1ilqF2c", - "created_at": "2023-03-08T14:28:14.826Z", - "expires_at": "2023-03-22T14:28:14Z" + "user": [ + "sylke@test.com" + ], + "jti": "377080a0df7140f29579dbb3eecb48f2", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTI5NCwiaWF0IjoxNjc4Mjg1Njk0LCJqdGkiOiIzNzcwODBhMGRmNzE0MGYyOTU3OWRiYjNlZWNiNDhmMiIsInVzZXJfaWQiOjEzfQ.wV9vluo6_mWT5LY2pivTYrNfkybOk_hoP5Us1ilqF2c", + "created_at": "2023-03-08T14:28:14.826Z", + "expires_at": "2023-03-22T14:28:14Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 11, "fields": { - "user": [ - "sylvian@test.com" - ], - "jti": "963cc291d9e04d39a3f53a45fd9c69cd", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTMyMCwiaWF0IjoxNjc4Mjg1NzIwLCJqdGkiOiI5NjNjYzI5MWQ5ZTA0ZDM5YTNmNTNhNDVmZDljNjljZCIsInVzZXJfaWQiOjE0fQ.pJo4Epw9pSOgRfIuVCQOQRcgTqT8fRYogO1wwDgps3A", - "created_at": "2023-03-08T14:28:40.954Z", - "expires_at": "2023-03-22T14:28:40Z" + "user": [ + "sylvian@test.com" + ], + "jti": "963cc291d9e04d39a3f53a45fd9c69cd", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTMyMCwiaWF0IjoxNjc4Mjg1NzIwLCJqdGkiOiI5NjNjYzI5MWQ5ZTA0ZDM5YTNmNTNhNDVmZDljNjljZCIsInVzZXJfaWQiOjE0fQ.pJo4Epw9pSOgRfIuVCQOQRcgTqT8fRYogO1wwDgps3A", + "created_at": "2023-03-08T14:28:40.954Z", + "expires_at": "2023-03-22T14:28:40Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 12, "fields": { - "user": [ - "stijn@test.com" - ], - "jti": "6147874370d048ceabb9f4afcfc59435", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQyMiwiaWF0IjoxNjc4Mjg1ODIyLCJqdGkiOiI2MTQ3ODc0MzcwZDA0OGNlYWJiOWY0YWZjZmM1OTQzNSIsInVzZXJfaWQiOjE1fQ.8XdyTyAvDEm-g8esb3yQ5SQ-5VU6CtFmDd8IN38sUUc", - "created_at": "2023-03-08T14:30:22.517Z", - "expires_at": "2023-03-22T14:30:22Z" + "user": [ + "stijn@test.com" + ], + "jti": "6147874370d048ceabb9f4afcfc59435", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQyMiwiaWF0IjoxNjc4Mjg1ODIyLCJqdGkiOiI2MTQ3ODc0MzcwZDA0OGNlYWJiOWY0YWZjZmM1OTQzNSIsInVzZXJfaWQiOjE1fQ.8XdyTyAvDEm-g8esb3yQ5SQ-5VU6CtFmDd8IN38sUUc", + "created_at": "2023-03-08T14:30:22.517Z", + "expires_at": "2023-03-22T14:30:22Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 13, "fields": { - "user": [ - "stef@test.com" - ], - "jti": "b5ae6145cfa141a5ae493757037b0e54", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ0MCwiaWF0IjoxNjc4Mjg1ODQwLCJqdGkiOiJiNWFlNjE0NWNmYTE0MWE1YWU0OTM3NTcwMzdiMGU1NCIsInVzZXJfaWQiOjE2fQ.9Wv_nnNIhwHnze5R4e7l5b0yAtu6-boThkyBrm-FGn0", - "created_at": "2023-03-08T14:30:40.211Z", - "expires_at": "2023-03-22T14:30:40Z" + "user": [ + "stef@test.com" + ], + "jti": "b5ae6145cfa141a5ae493757037b0e54", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ0MCwiaWF0IjoxNjc4Mjg1ODQwLCJqdGkiOiJiNWFlNjE0NWNmYTE0MWE1YWU0OTM3NTcwMzdiMGU1NCIsInVzZXJfaWQiOjE2fQ.9Wv_nnNIhwHnze5R4e7l5b0yAtu6-boThkyBrm-FGn0", + "created_at": "2023-03-08T14:30:40.211Z", + "expires_at": "2023-03-22T14:30:40Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 14, "fields": { - "user": [ - "stephan@test.com" - ], - "jti": "308752884b9440fd83161f3f5909b6e0", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ1OCwiaWF0IjoxNjc4Mjg1ODU4LCJqdGkiOiIzMDg3NTI4ODRiOTQ0MGZkODMxNjFmM2Y1OTA5YjZlMCIsInVzZXJfaWQiOjE3fQ.P_Pm-MAB_61mtte7FI-pDuOe-OLsKQRh7GF0UBCdTfc", - "created_at": "2023-03-08T14:30:58.838Z", - "expires_at": "2023-03-22T14:30:58Z" + "user": [ + "stephan@test.com" + ], + "jti": "308752884b9440fd83161f3f5909b6e0", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ1OCwiaWF0IjoxNjc4Mjg1ODU4LCJqdGkiOiIzMDg3NTI4ODRiOTQ0MGZkODMxNjFmM2Y1OTA5YjZlMCIsInVzZXJfaWQiOjE3fQ.P_Pm-MAB_61mtte7FI-pDuOe-OLsKQRh7GF0UBCdTfc", + "created_at": "2023-03-08T14:30:58.838Z", + "expires_at": "2023-03-22T14:30:58Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 15, "fields": { - "user": [ - "steven@test.com" - ], - "jti": "24b5f64eb7644115941a8c47dcedc5f6", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ3MiwiaWF0IjoxNjc4Mjg1ODcyLCJqdGkiOiIyNGI1ZjY0ZWI3NjQ0MTE1OTQxYThjNDdkY2VkYzVmNiIsInVzZXJfaWQiOjE4fQ.knK-9OnU552iq0uX6rnSyazUrqe6g74hqHTVrtoUyU8", - "created_at": "2023-03-08T14:31:12.014Z", - "expires_at": "2023-03-22T14:31:12Z" + "user": [ + "steven@test.com" + ], + "jti": "24b5f64eb7644115941a8c47dcedc5f6", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ3MiwiaWF0IjoxNjc4Mjg1ODcyLCJqdGkiOiIyNGI1ZjY0ZWI3NjQ0MTE1OTQxYThjNDdkY2VkYzVmNiIsInVzZXJfaWQiOjE4fQ.knK-9OnU552iq0uX6rnSyazUrqe6g74hqHTVrtoUyU8", + "created_at": "2023-03-08T14:31:12.014Z", + "expires_at": "2023-03-22T14:31:12Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 16, "fields": { - "user": [ - "sten@test.com" - ], - "jti": "b9fcab5ea226443a838d441716680d8f", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTUyOSwiaWF0IjoxNjc4Mjg1OTI5LCJqdGkiOiJiOWZjYWI1ZWEyMjY0NDNhODM4ZDQ0MTcxNjY4MGQ4ZiIsInVzZXJfaWQiOjE5fQ.UvCX27kD696LrcvTSVPnFutCvdtsYFqtfxTnujuPrtE", - "created_at": "2023-03-08T14:32:09.596Z", - "expires_at": "2023-03-22T14:32:09Z" + "user": [ + "sten@test.com" + ], + "jti": "b9fcab5ea226443a838d441716680d8f", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTUyOSwiaWF0IjoxNjc4Mjg1OTI5LCJqdGkiOiJiOWZjYWI1ZWEyMjY0NDNhODM4ZDQ0MTcxNjY4MGQ4ZiIsInVzZXJfaWQiOjE5fQ.UvCX27kD696LrcvTSVPnFutCvdtsYFqtfxTnujuPrtE", + "created_at": "2023-03-08T14:32:09.596Z", + "expires_at": "2023-03-22T14:32:09Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 17, "fields": { - "user": [ - "sterre@test.com" - ], - "jti": "e7fcbaf80f1849f49e3f11a8abcded05", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU1NSwiaWF0IjoxNjc4Mjg1OTU1LCJqdGkiOiJlN2ZjYmFmODBmMTg0OWY0OWUzZjExYThhYmNkZWQwNSIsInVzZXJfaWQiOjIwfQ.HyvubS-t_6fJbwUHgF7GBNPkk9kxjDR4HTMtcDSFsv8", - "created_at": "2023-03-08T14:32:35.987Z", - "expires_at": "2023-03-22T14:32:35Z" + "user": [ + "sterre@test.com" + ], + "jti": "e7fcbaf80f1849f49e3f11a8abcded05", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU1NSwiaWF0IjoxNjc4Mjg1OTU1LCJqdGkiOiJlN2ZjYmFmODBmMTg0OWY0OWUzZjExYThhYmNkZWQwNSIsInVzZXJfaWQiOjIwfQ.HyvubS-t_6fJbwUHgF7GBNPkk9kxjDR4HTMtcDSFsv8", + "created_at": "2023-03-08T14:32:35.987Z", + "expires_at": "2023-03-22T14:32:35Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 18, "fields": { - "user": [ - "stella@test.com" - ], - "jti": "40c145cd228e46be933bb9b9ddcffa3d", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU2NiwiaWF0IjoxNjc4Mjg1OTY2LCJqdGkiOiI0MGMxNDVjZDIyOGU0NmJlOTMzYmI5YjlkZGNmZmEzZCIsInVzZXJfaWQiOjIxfQ.9a9GA52XeD1zydw_x-z1im6adxF_jkEdNMPbQ0JhM-0", - "created_at": "2023-03-08T14:32:46.714Z", - "expires_at": "2023-03-22T14:32:46Z" + "user": [ + "stella@test.com" + ], + "jti": "40c145cd228e46be933bb9b9ddcffa3d", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU2NiwiaWF0IjoxNjc4Mjg1OTY2LCJqdGkiOiI0MGMxNDVjZDIyOGU0NmJlOTMzYmI5YjlkZGNmZmEzZCIsInVzZXJfaWQiOjIxfQ.9a9GA52XeD1zydw_x-z1im6adxF_jkEdNMPbQ0JhM-0", + "created_at": "2023-03-08T14:32:46.714Z", + "expires_at": "2023-03-22T14:32:46Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 19, "fields": { - "user": [ - "stefanie@test.com" - ], - "jti": "a6c62e0c636b4decb04ce7ca1fd35701", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU3OCwiaWF0IjoxNjc4Mjg1OTc4LCJqdGkiOiJhNmM2MmUwYzYzNmI0ZGVjYjA0Y2U3Y2ExZmQzNTcwMSIsInVzZXJfaWQiOjIyfQ.MblWl6od8iazAFtPi4G0iMqq5xnFslYeXHnDwFO3S4k", - "created_at": "2023-03-08T14:32:58.534Z", - "expires_at": "2023-03-22T14:32:58Z" + "user": [ + "stefanie@test.com" + ], + "jti": "a6c62e0c636b4decb04ce7ca1fd35701", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU3OCwiaWF0IjoxNjc4Mjg1OTc4LCJqdGkiOiJhNmM2MmUwYzYzNmI0ZGVjYjA0Y2U3Y2ExZmQzNTcwMSIsInVzZXJfaWQiOjIyfQ.MblWl6od8iazAFtPi4G0iMqq5xnFslYeXHnDwFO3S4k", + "created_at": "2023-03-08T14:32:58.534Z", + "expires_at": "2023-03-22T14:32:58Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 20, "fields": { - "user": [ - "stacey@test.com" - ], - "jti": "85b0bb691b174c83a56dda7d3fd89e1f", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU4NywiaWF0IjoxNjc4Mjg1OTg3LCJqdGkiOiI4NWIwYmI2OTFiMTc0YzgzYTU2ZGRhN2QzZmQ4OWUxZiIsInVzZXJfaWQiOjIzfQ.OHhanYOT4P2MrNpADE7no77z2gwwZzt0dLOAuqXtgs4", - "created_at": "2023-03-08T14:33:07.333Z", - "expires_at": "2023-03-22T14:33:07Z" + "user": [ + "stacey@test.com" + ], + "jti": "85b0bb691b174c83a56dda7d3fd89e1f", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU4NywiaWF0IjoxNjc4Mjg1OTg3LCJqdGkiOiI4NWIwYmI2OTFiMTc0YzgzYTU2ZGRhN2QzZmQ4OWUxZiIsInVzZXJfaWQiOjIzfQ.OHhanYOT4P2MrNpADE7no77z2gwwZzt0dLOAuqXtgs4", + "created_at": "2023-03-08T14:33:07.333Z", + "expires_at": "2023-03-22T14:33:07Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 21, "fields": { - "user": [ - "stanford@test.com" - ], - "jti": "e84cba91f5884f39a739f2c6b4722f49", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTYxNCwiaWF0IjoxNjc4Mjg2MDE0LCJqdGkiOiJlODRjYmE5MWY1ODg0ZjM5YTczOWYyYzZiNDcyMmY0OSIsInVzZXJfaWQiOjI0fQ.JtZW4qCLy75mn0PUlT0vBBvadZAA2WE2Kj5OFGIfwO4", - "created_at": "2023-03-08T14:33:34.698Z", - "expires_at": "2023-03-22T14:33:34Z" + "user": [ + "stanford@test.com" + ], + "jti": "e84cba91f5884f39a739f2c6b4722f49", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTYxNCwiaWF0IjoxNjc4Mjg2MDE0LCJqdGkiOiJlODRjYmE5MWY1ODg0ZjM5YTczOWYyYzZiNDcyMmY0OSIsInVzZXJfaWQiOjI0fQ.JtZW4qCLy75mn0PUlT0vBBvadZAA2WE2Kj5OFGIfwO4", + "created_at": "2023-03-08T14:33:34.698Z", + "expires_at": "2023-03-22T14:33:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 22, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "2fc08fcb734444ce90373ae1aa5fdee1", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY2MSwiaWF0IjoxNjc4Mjg2MDYxLCJqdGkiOiIyZmMwOGZjYjczNDQ0NGNlOTAzNzNhZTFhYTVmZGVlMSIsInVzZXJfaWQiOjI1fQ.-NZGL_xv2UB9ZT_HNF1rorE6tWOesLdSWyUpoCyQVE0", - "created_at": "2023-03-08T14:34:21.094Z", - "expires_at": "2023-03-22T14:34:21Z" + "user": [ + "adam@test.com" + ], + "jti": "2fc08fcb734444ce90373ae1aa5fdee1", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY2MSwiaWF0IjoxNjc4Mjg2MDYxLCJqdGkiOiIyZmMwOGZjYjczNDQ0NGNlOTAzNzNhZTFhYTVmZGVlMSIsInVzZXJfaWQiOjI1fQ.-NZGL_xv2UB9ZT_HNF1rorE6tWOesLdSWyUpoCyQVE0", + "created_at": "2023-03-08T14:34:21.094Z", + "expires_at": "2023-03-22T14:34:21Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 23, "fields": { - "user": [ - "adriana@test.com" - ], - "jti": "4cfc52595ae84432b14dc3b73f82ba82", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY3OCwiaWF0IjoxNjc4Mjg2MDc4LCJqdGkiOiI0Y2ZjNTI1OTVhZTg0NDMyYjE0ZGMzYjczZjgyYmE4MiIsInVzZXJfaWQiOjI2fQ.3giXy0wnqJKJcIqzP0ah0I4Sx1qyUpxg1dHADqZwqV4", - "created_at": "2023-03-08T14:34:38.110Z", - "expires_at": "2023-03-22T14:34:38Z" + "user": [ + "adriana@test.com" + ], + "jti": "4cfc52595ae84432b14dc3b73f82ba82", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY3OCwiaWF0IjoxNjc4Mjg2MDc4LCJqdGkiOiI0Y2ZjNTI1OTVhZTg0NDMyYjE0ZGMzYjczZjgyYmE4MiIsInVzZXJfaWQiOjI2fQ.3giXy0wnqJKJcIqzP0ah0I4Sx1qyUpxg1dHADqZwqV4", + "created_at": "2023-03-08T14:34:38.110Z", + "expires_at": "2023-03-22T14:34:38Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 24, "fields": { - "user": [ - "adelynn@test.com" - ], - "jti": "97dd0984f89145a3a8922a8be966ef8b", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY5NSwiaWF0IjoxNjc4Mjg2MDk1LCJqdGkiOiI5N2RkMDk4NGY4OTE0NWEzYTg5MjJhOGJlOTY2ZWY4YiIsInVzZXJfaWQiOjI3fQ.hydG56Tt0FUBrj3ZtBjUmoZDc0uUMCzIuGdZAFVWJgg", - "created_at": "2023-03-08T14:34:55.119Z", - "expires_at": "2023-03-22T14:34:55Z" + "user": [ + "adelynn@test.com" + ], + "jti": "97dd0984f89145a3a8922a8be966ef8b", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY5NSwiaWF0IjoxNjc4Mjg2MDk1LCJqdGkiOiI5N2RkMDk4NGY4OTE0NWEzYTg5MjJhOGJlOTY2ZWY4YiIsInVzZXJfaWQiOjI3fQ.hydG56Tt0FUBrj3ZtBjUmoZDc0uUMCzIuGdZAFVWJgg", + "created_at": "2023-03-08T14:34:55.119Z", + "expires_at": "2023-03-22T14:34:55Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 25, "fields": { - "user": [ - "suzanne@test.com" - ], - "jti": "fc20b2f7faa0406791a40fadb3133379", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc1NiwiaWF0IjoxNjc4Mjg2MTU2LCJqdGkiOiJmYzIwYjJmN2ZhYTA0MDY3OTFhNDBmYWRiMzEzMzM3OSIsInVzZXJfaWQiOjI4fQ.CoG0GmLBBtjIegZtXYXYMzS-zF2DOyyq88RcTw8i4qk", - "created_at": "2023-03-08T14:35:56.735Z", - "expires_at": "2023-03-22T14:35:56Z" + "user": [ + "suzanne@test.com" + ], + "jti": "fc20b2f7faa0406791a40fadb3133379", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc1NiwiaWF0IjoxNjc4Mjg2MTU2LCJqdGkiOiJmYzIwYjJmN2ZhYTA0MDY3OTFhNDBmYWRiMzEzMzM3OSIsInVzZXJfaWQiOjI4fQ.CoG0GmLBBtjIegZtXYXYMzS-zF2DOyyq88RcTw8i4qk", + "created_at": "2023-03-08T14:35:56.735Z", + "expires_at": "2023-03-22T14:35:56Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 26, "fields": { - "user": [ - "suzy@test.com" - ], - "jti": "b98bf339f03b4ce3ac09cf74de0f4bd8", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc2NiwiaWF0IjoxNjc4Mjg2MTY2LCJqdGkiOiJiOThiZjMzOWYwM2I0Y2UzYWMwOWNmNzRkZTBmNGJkOCIsInVzZXJfaWQiOjI5fQ.Wz7A4peU8Gm4wbBwSuy4UR64gjCsNdq1fISKY32sXeo", - "created_at": "2023-03-08T14:36:06.872Z", - "expires_at": "2023-03-22T14:36:06Z" + "user": [ + "suzy@test.com" + ], + "jti": "b98bf339f03b4ce3ac09cf74de0f4bd8", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc2NiwiaWF0IjoxNjc4Mjg2MTY2LCJqdGkiOiJiOThiZjMzOWYwM2I0Y2UzYWMwOWNmNzRkZTBmNGJkOCIsInVzZXJfaWQiOjI5fQ.Wz7A4peU8Gm4wbBwSuy4UR64gjCsNdq1fISKY32sXeo", + "created_at": "2023-03-08T14:36:06.872Z", + "expires_at": "2023-03-22T14:36:06Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 27, "fields": { - "user": [ - "suffried@test.com" - ], - "jti": "38ea075775b2466ebba75dc29755d907", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc4NCwiaWF0IjoxNjc4Mjg2MTg0LCJqdGkiOiIzOGVhMDc1Nzc1YjI0NjZlYmJhNzVkYzI5NzU1ZDkwNyIsInVzZXJfaWQiOjMwfQ.IS2yXOas30zm5sdmI_AW2lS-T6dgH4SGq1dVdRRHFK8", - "created_at": "2023-03-08T14:36:24.676Z", - "expires_at": "2023-03-22T14:36:24Z" + "user": [ + "suffried@test.com" + ], + "jti": "38ea075775b2466ebba75dc29755d907", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc4NCwiaWF0IjoxNjc4Mjg2MTg0LCJqdGkiOiIzOGVhMDc1Nzc1YjI0NjZlYmJhNzVkYzI5NzU1ZDkwNyIsInVzZXJfaWQiOjMwfQ.IS2yXOas30zm5sdmI_AW2lS-T6dgH4SGq1dVdRRHFK8", + "created_at": "2023-03-08T14:36:24.676Z", + "expires_at": "2023-03-22T14:36:24Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 28, "fields": { - "user": [ - "sylvie@test.com" - ], - "jti": "ccdc94390f1d4550bcc2ad0c8f865cd1", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDU2ODEzNSwiaWF0IjoxNjc5MzU4NTM1LCJqdGkiOiJjY2RjOTQzOTBmMWQ0NTUwYmNjMmFkMGM4Zjg2NWNkMSIsInVzZXJfaWQiOjF9.LenPBPEnciTrlXq1kAmfQXGRLB5FKufpWsjX_UZpaQ8", - "created_at": "2023-03-21T00:28:55.421Z", - "expires_at": "2023-04-04T00:28:55Z" + "user": [ + "sylvie@test.com" + ], + "jti": "ccdc94390f1d4550bcc2ad0c8f865cd1", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDU2ODEzNSwiaWF0IjoxNjc5MzU4NTM1LCJqdGkiOiJjY2RjOTQzOTBmMWQ0NTUwYmNjMmFkMGM4Zjg2NWNkMSIsInVzZXJfaWQiOjF9.LenPBPEnciTrlXq1kAmfQXGRLB5FKufpWsjX_UZpaQ8", + "created_at": "2023-03-21T00:28:55.421Z", + "expires_at": "2023-04-04T00:28:55Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 29, "fields": { - "user": [ - "sylvie@test.com" - ], - "jti": "c3e5abaa82054f04b5439a23267fc253", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA2NiwiaWF0IjoxNjc5NDMzNDY2LCJqdGkiOiJjM2U1YWJhYTgyMDU0ZjA0YjU0MzlhMjMyNjdmYzI1MyIsInVzZXJfaWQiOjF9.3XQU_aE62t3bmdibCK7WNlnwdjr7x4r_Q5RSX_og1sk", - "created_at": "2023-03-21T21:17:46.133Z", - "expires_at": "2023-04-04T21:17:46Z" + "user": [ + "sylvie@test.com" + ], + "jti": "c3e5abaa82054f04b5439a23267fc253", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA2NiwiaWF0IjoxNjc5NDMzNDY2LCJqdGkiOiJjM2U1YWJhYTgyMDU0ZjA0YjU0MzlhMjMyNjdmYzI1MyIsInVzZXJfaWQiOjF9.3XQU_aE62t3bmdibCK7WNlnwdjr7x4r_Q5RSX_og1sk", + "created_at": "2023-03-21T21:17:46.133Z", + "expires_at": "2023-04-04T21:17:46Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 30, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "df1ee19d62bf4198bb3c8452e25d2d76", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA4MCwiaWF0IjoxNjc5NDMzNDgwLCJqdGkiOiJkZjFlZTE5ZDYyYmY0MTk4YmIzYzg0NTJlMjVkMmQ3NiIsInVzZXJfaWQiOjE2fQ.-eO__dlpMIMmWhQvixeWRmuT9b5kIJBMb-erHLL_XD0", - "created_at": "2023-03-21T21:18:00.599Z", - "expires_at": "2023-04-04T21:18:00Z" + "user": [ + "adam@test.com" + ], + "jti": "df1ee19d62bf4198bb3c8452e25d2d76", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA4MCwiaWF0IjoxNjc5NDMzNDgwLCJqdGkiOiJkZjFlZTE5ZDYyYmY0MTk4YmIzYzg0NTJlMjVkMmQ3NiIsInVzZXJfaWQiOjE2fQ.-eO__dlpMIMmWhQvixeWRmuT9b5kIJBMb-erHLL_XD0", + "created_at": "2023-03-21T21:18:00.599Z", + "expires_at": "2023-04-04T21:18:00Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 31, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "d612262953224410813b5a09741ded52", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzQ3NiwiaWF0IjoxNjc5NDMzODc2LCJqdGkiOiJkNjEyMjYyOTUzMjI0NDEwODEzYjVhMDk3NDFkZWQ1MiIsInVzZXJfaWQiOjE2fQ.dgwAs6gdTLDBBzFJvinX8UL8IfnV3q4e9uyDp3m21_A", - "created_at": "2023-03-21T21:24:36.630Z", - "expires_at": "2023-04-04T21:24:36Z" + "user": [ + "adam@test.com" + ], + "jti": "d612262953224410813b5a09741ded52", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzQ3NiwiaWF0IjoxNjc5NDMzODc2LCJqdGkiOiJkNjEyMjYyOTUzMjI0NDEwODEzYjVhMDk3NDFkZWQ1MiIsInVzZXJfaWQiOjE2fQ.dgwAs6gdTLDBBzFJvinX8UL8IfnV3q4e9uyDp3m21_A", + "created_at": "2023-03-21T21:24:36.630Z", + "expires_at": "2023-04-04T21:24:36Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 32, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "b56cac5faf034716b8279e108b191f66", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzgzOCwiaWF0IjoxNjc5NDM0MjM4LCJqdGkiOiJiNTZjYWM1ZmFmMDM0NzE2YjgyNzllMTA4YjE5MWY2NiIsInVzZXJfaWQiOjE2fQ.lMPCJFeq6nhiHQKPqe6LAePADl3u0K1yvVUKVvdhHGA", - "created_at": "2023-03-21T21:30:38.025Z", - "expires_at": "2023-04-04T21:30:38Z" + "user": [ + "adam@test.com" + ], + "jti": "b56cac5faf034716b8279e108b191f66", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzgzOCwiaWF0IjoxNjc5NDM0MjM4LCJqdGkiOiJiNTZjYWM1ZmFmMDM0NzE2YjgyNzllMTA4YjE5MWY2NiIsInVzZXJfaWQiOjE2fQ.lMPCJFeq6nhiHQKPqe6LAePADl3u0K1yvVUKVvdhHGA", + "created_at": "2023-03-21T21:30:38.025Z", + "expires_at": "2023-04-04T21:30:38Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 33, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "ea3f7105db9c4ae9b32d3b0ceecda88d", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0NDkxMCwiaWF0IjoxNjc5NDM1MzEwLCJqdGkiOiJlYTNmNzEwNWRiOWM0YWU5YjMyZDNiMGNlZWNkYTg4ZCIsInVzZXJfaWQiOjE2fQ.2MZq4Ga59WAki1DhEE7zaSSdG3JpyWLM4HVU4hAdatM", - "created_at": "2023-03-21T21:48:30.315Z", - "expires_at": "2023-04-04T21:48:30Z" + "user": [ + "adam@test.com" + ], + "jti": "ea3f7105db9c4ae9b32d3b0ceecda88d", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0NDkxMCwiaWF0IjoxNjc5NDM1MzEwLCJqdGkiOiJlYTNmNzEwNWRiOWM0YWU5YjMyZDNiMGNlZWNkYTg4ZCIsInVzZXJfaWQiOjE2fQ.2MZq4Ga59WAki1DhEE7zaSSdG3JpyWLM4HVU4hAdatM", + "created_at": "2023-03-21T21:48:30.315Z", + "expires_at": "2023-04-04T21:48:30Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 34, "fields": { - "user": null, - "jti": "9f80b37288c647ecbfb7b10186a1f089", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzEyMzk1MCwiaWF0IjoxNjgxOTE0MzUwLCJqdGkiOiI5ZjgwYjM3Mjg4YzY0N2VjYmZiN2IxMDE4NmExZjA4OSIsInVzZXJfaWQiOjIyfQ.t_CR_oTjr7QtSheatUHZVSx6N86_6mUjCI0fDBOI4bA", - "created_at": null, - "expires_at": "2023-05-03T14:25:50Z" + "user": null, + "jti": "9f80b37288c647ecbfb7b10186a1f089", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzEyMzk1MCwiaWF0IjoxNjgxOTE0MzUwLCJqdGkiOiI5ZjgwYjM3Mjg4YzY0N2VjYmZiN2IxMDE4NmExZjA4OSIsInVzZXJfaWQiOjIyfQ.t_CR_oTjr7QtSheatUHZVSx6N86_6mUjCI0fDBOI4bA", + "created_at": null, + "expires_at": "2023-05-03T14:25:50Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 35, "fields": { - "user": [ - "admin@test.com" - ], - "jti": "d266ea7deb4841c785e30671ab58305d", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0ODM2MywiaWF0IjoxNjgxOTM4NzYzLCJqdGkiOiJkMjY2ZWE3ZGViNDg0MWM3ODVlMzA2NzFhYjU4MzA1ZCIsInVzZXJfaWQiOjIyfQ.xaQM7YuHnX351zrPUFDHbGnI3qPdSgjWiaF7RoFhttI", - "created_at": "2023-04-19T21:12:43.109Z", - "expires_at": "2023-05-03T21:12:43Z" + "user": [ + "admin@test.com" + ], + "jti": "d266ea7deb4841c785e30671ab58305d", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0ODM2MywiaWF0IjoxNjgxOTM4NzYzLCJqdGkiOiJkMjY2ZWE3ZGViNDg0MWM3ODVlMzA2NzFhYjU4MzA1ZCIsInVzZXJfaWQiOjIyfQ.xaQM7YuHnX351zrPUFDHbGnI3qPdSgjWiaF7RoFhttI", + "created_at": "2023-04-19T21:12:43.109Z", + "expires_at": "2023-05-03T21:12:43Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 36, "fields": { - "user": null, - "jti": "ad334926ec58460f95c3f5ed6bce4b70", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0NTgyMSwiaWF0IjoxNjgxOTM2MjIxLCJqdGkiOiJhZDMzNDkyNmVjNTg0NjBmOTVjM2Y1ZWQ2YmNlNGI3MCIsInVzZXJfaWQiOjIyfQ.20pmj0RkoDXo-sdu_QkhHnxJmlZUwmkciWKrOgijmTU", - "created_at": null, - "expires_at": "2023-05-03T20:30:21Z" + "user": null, + "jti": "ad334926ec58460f95c3f5ed6bce4b70", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0NTgyMSwiaWF0IjoxNjgxOTM2MjIxLCJqdGkiOiJhZDMzNDkyNmVjNTg0NjBmOTVjM2Y1ZWQ2YmNlNGI3MCIsInVzZXJfaWQiOjIyfQ.20pmj0RkoDXo-sdu_QkhHnxJmlZUwmkciWKrOgijmTU", + "created_at": null, + "expires_at": "2023-05-03T20:30:21Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 37, "fields": { - "user": null, - "jti": "ecaaa26ce5fd42b9b1f81b5998bd3a47", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE1MTk1NCwiaWF0IjoxNjgxOTQyMzU0LCJqdGkiOiJlY2FhYTI2Y2U1ZmQ0MmI5YjFmODFiNTk5OGJkM2E0NyIsInVzZXJfaWQiOjIyfQ.DrG81k6MCcHkrT9OhIpy__1JURJDbpf1gEusW67sNYY", - "created_at": null, - "expires_at": "2023-05-03T22:12:34Z" + "user": null, + "jti": "ecaaa26ce5fd42b9b1f81b5998bd3a47", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE1MTk1NCwiaWF0IjoxNjgxOTQyMzU0LCJqdGkiOiJlY2FhYTI2Y2U1ZmQ0MmI5YjFmODFiNTk5OGJkM2E0NyIsInVzZXJfaWQiOjIyfQ.DrG81k6MCcHkrT9OhIpy__1JURJDbpf1gEusW67sNYY", + "created_at": null, + "expires_at": "2023-05-03T22:12:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 38, "fields": { - "user": [ - "admin@test.com" - ], - "jti": "36e30e1f79644b258be2ef64d99cedf0", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4Nzg5OSwiaWF0IjoxNjgxOTc4Mjk5LCJqdGkiOiIzNmUzMGUxZjc5NjQ0YjI1OGJlMmVmNjRkOTljZWRmMCIsInVzZXJfaWQiOjIyfQ.f7M6fSAJY_ysw4DJklVSKRLXwl1PZP7n2LcNgS_SnK4", - "created_at": "2023-04-20T08:11:39.511Z", - "expires_at": "2023-05-04T08:11:39Z" + "user": [ + "admin@test.com" + ], + "jti": "36e30e1f79644b258be2ef64d99cedf0", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4Nzg5OSwiaWF0IjoxNjgxOTc4Mjk5LCJqdGkiOiIzNmUzMGUxZjc5NjQ0YjI1OGJlMmVmNjRkOTljZWRmMCIsInVzZXJfaWQiOjIyfQ.f7M6fSAJY_ysw4DJklVSKRLXwl1PZP7n2LcNgS_SnK4", + "created_at": "2023-04-20T08:11:39.511Z", + "expires_at": "2023-05-04T08:11:39Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 39, "fields": { - "user": null, - "jti": "145872994e244255a65a3f49b2df72a8", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4NzI3OSwiaWF0IjoxNjgxOTc3Njc5LCJqdGkiOiIxNDU4NzI5OTRlMjQ0MjU1YTY1YTNmNDliMmRmNzJhOCIsInVzZXJfaWQiOjIyfQ.YN3kOfCZqPvP0QpaxhfCuurY_o5M7pJbWFW6BQz-MPQ", - "created_at": null, - "expires_at": "2023-05-04T08:01:19Z" + "user": null, + "jti": "145872994e244255a65a3f49b2df72a8", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4NzI3OSwiaWF0IjoxNjgxOTc3Njc5LCJqdGkiOiIxNDU4NzI5OTRlMjQ0MjU1YTY1YTNmNDliMmRmNzJhOCIsInVzZXJfaWQiOjIyfQ.YN3kOfCZqPvP0QpaxhfCuurY_o5M7pJbWFW6BQz-MPQ", + "created_at": null, + "expires_at": "2023-05-04T08:01:19Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 40, "fields": { - "user": [ - "sylvian@test.com" - ], - "jti": "a1b7f07b8dd54f3390e5b0de93935797", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5ODg2MCwiaWF0IjoxNjgxOTg5MjYwLCJqdGkiOiJhMWI3ZjA3YjhkZDU0ZjMzOTBlNWIwZGU5MzkzNTc5NyIsInVzZXJfaWQiOjV9.RSIgMlFh2MPk0GBxo9j54fbE46swIYoPgZ87t-SOqBU", - "created_at": "2023-04-20T11:14:20.839Z", - "expires_at": "2023-05-04T11:14:20Z" + "user": [ + "sylvian@test.com" + ], + "jti": "a1b7f07b8dd54f3390e5b0de93935797", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5ODg2MCwiaWF0IjoxNjgxOTg5MjYwLCJqdGkiOiJhMWI3ZjA3YjhkZDU0ZjMzOTBlNWIwZGU5MzkzNTc5NyIsInVzZXJfaWQiOjV9.RSIgMlFh2MPk0GBxo9j54fbE46swIYoPgZ87t-SOqBU", + "created_at": "2023-04-20T11:14:20.839Z", + "expires_at": "2023-05-04T11:14:20Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 41, "fields": { - "user": [ - "sylvian@test.com" - ], - "jti": "df903eaa817843df91b41d86d0e587df", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5OTU1NSwiaWF0IjoxNjgxOTg5OTU1LCJqdGkiOiJkZjkwM2VhYTgxNzg0M2RmOTFiNDFkODZkMGU1ODdkZiIsInVzZXJfaWQiOjV9.u3IaCXSI3a0u9-1RBL9BO8uY2N0E_HhrZYtLKMx6DVk", - "created_at": "2023-04-20T11:25:55.285Z", - "expires_at": "2023-05-04T11:25:55Z" + "user": [ + "sylvian@test.com" + ], + "jti": "df903eaa817843df91b41d86d0e587df", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5OTU1NSwiaWF0IjoxNjgxOTg5OTU1LCJqdGkiOiJkZjkwM2VhYTgxNzg0M2RmOTFiNDFkODZkMGU1ODdkZiIsInVzZXJfaWQiOjV9.u3IaCXSI3a0u9-1RBL9BO8uY2N0E_HhrZYtLKMx6DVk", + "created_at": "2023-04-20T11:25:55.285Z", + "expires_at": "2023-05-04T11:25:55Z" } -}, -{ + }, + { "model": "account.emailaddress", "pk": 7, "fields": { - "user": [ - "sylvie@test.com" - ], - "email": "sylvie@test.com", - "verified": false, - "primary": true + "user": [ + "sylvie@test.com" + ], + "email": "sylvie@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 8, "fields": { - "user": [ - "sydney@test.com" - ], - "email": "sydney@test.com", - "verified": false, - "primary": true + "user": [ + "sydney@test.com" + ], + "email": "sydney@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 9, "fields": { - "user": [ - "sylvano@test.com" - ], - "email": "sylvano@test.com", - "verified": false, - "primary": true + "user": [ + "sylvano@test.com" + ], + "email": "sylvano@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 10, "fields": { - "user": [ - "sylke@test.com" - ], - "email": "sylke@test.com", - "verified": false, - "primary": true + "user": [ + "sylke@test.com" + ], + "email": "sylke@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 11, "fields": { - "user": [ - "sylvian@test.com" - ], - "email": "synthia@test.com", - "verified": false, - "primary": true + "user": [ + "sylvian@test.com" + ], + "email": "synthia@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 12, "fields": { - "user": [ - "stijn@test.com" - ], - "email": "stijn@test.com", - "verified": false, - "primary": true + "user": [ + "stijn@test.com" + ], + "email": "stijn@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 13, "fields": { - "user": [ - "stef@test.com" - ], - "email": "stef@test.com", - "verified": false, - "primary": true + "user": [ + "stef@test.com" + ], + "email": "stef@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 14, "fields": { - "user": [ - "stephan@test.com" - ], - "email": "stephan@test.com", - "verified": false, - "primary": true + "user": [ + "stephan@test.com" + ], + "email": "stephan@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 15, "fields": { - "user": [ - "steven@test.com" - ], - "email": "steven@test.com", - "verified": false, - "primary": true + "user": [ + "steven@test.com" + ], + "email": "steven@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 16, "fields": { - "user": [ - "sten@test.com" - ], - "email": "sten@test.com", - "verified": false, - "primary": true + "user": [ + "sten@test.com" + ], + "email": "sten@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 17, "fields": { - "user": [ - "sterre@test.com" - ], - "email": "sterre@test.com", - "verified": false, - "primary": true + "user": [ + "sterre@test.com" + ], + "email": "sterre@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 18, "fields": { - "user": [ - "stella@test.com" - ], - "email": "stella@test.com", - "verified": false, - "primary": true + "user": [ + "stella@test.com" + ], + "email": "stella@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 19, "fields": { - "user": [ - "stefanie@test.com" - ], - "email": "stefanie@test.com", - "verified": false, - "primary": true + "user": [ + "stefanie@test.com" + ], + "email": "stefanie@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 20, "fields": { - "user": [ - "stacey@test.com" - ], - "email": "stacey@test.com", - "verified": false, - "primary": true + "user": [ + "stacey@test.com" + ], + "email": "stacey@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 21, "fields": { - "user": [ - "stanford@test.com" - ], - "email": "stanford@test.com", - "verified": false, - "primary": true + "user": [ + "stanford@test.com" + ], + "email": "stanford@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 22, "fields": { - "user": [ - "adam@test.com" - ], - "email": "adam@test.com", - "verified": false, - "primary": true + "user": [ + "adam@test.com" + ], + "email": "adam@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 23, "fields": { - "user": [ - "adriana@test.com" - ], - "email": "adriana@test.com", - "verified": false, - "primary": true + "user": [ + "adriana@test.com" + ], + "email": "adriana@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 24, "fields": { - "user": [ - "adelynn@test.com" - ], - "email": "adelynn@test.com", - "verified": false, - "primary": true + "user": [ + "adelynn@test.com" + ], + "email": "adelynn@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 25, "fields": { - "user": [ - "suzanne@test.com" - ], - "email": "suzanne@test.com", - "verified": false, - "primary": true + "user": [ + "suzanne@test.com" + ], + "email": "suzanne@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 26, "fields": { - "user": [ - "suzy@test.com" - ], - "email": "suzy@test.com", - "verified": false, - "primary": true + "user": [ + "suzy@test.com" + ], + "email": "suzy@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 27, "fields": { - "user": [ - "suffried@test.com" - ], - "email": "sunny@test.com", - "verified": false, - "primary": true + "user": [ + "suffried@test.com" + ], + "email": "sunny@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "admin.logentry", "pk": 27, "fields": { - "action_time": "2023-03-08T14:39:26.117Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "30", - "object_repr": "sunny@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:39:26.117Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "30", + "object_repr": "sunny@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 28, "fields": { - "action_time": "2023-03-08T14:39:37.107Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "29", - "object_repr": "suzy@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:39:37.107Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "29", + "object_repr": "suzy@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 29, "fields": { - "action_time": "2023-03-08T14:40:29.816Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "29", - "object_repr": "suzy@test.com (SS)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T14:40:29.816Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "29", + "object_repr": "suzy@test.com (SS)", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 30, "fields": { - "action_time": "2023-03-08T14:40:45.033Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "28", - "object_repr": "suzanne@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:40:45.033Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "28", + "object_repr": "suzanne@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 31, "fields": { - "action_time": "2023-03-08T14:42:50.346Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "27", - "object_repr": "adelynn@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:42:50.346Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "27", + "object_repr": "adelynn@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 32, "fields": { - "action_time": "2023-03-08T14:43:07.577Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "26", - "object_repr": "adriana@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:43:07.577Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "26", + "object_repr": "adriana@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 33, "fields": { - "action_time": "2023-03-08T14:43:29.528Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "25", - "object_repr": "adam@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:43:29.528Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "25", + "object_repr": "adam@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 34, "fields": { - "action_time": "2023-03-08T14:43:59.200Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "24", - "object_repr": "stanford@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:43:59.200Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "24", + "object_repr": "stanford@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 35, "fields": { - "action_time": "2023-03-08T14:44:20.621Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "31", - "object_repr": "joe@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:44:20.621Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "31", + "object_repr": "joe@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 36, "fields": { - "action_time": "2023-03-08T14:45:12.079Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "30", - "object_repr": "suffried@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:12.079Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "30", + "object_repr": "suffried@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 37, "fields": { - "action_time": "2023-03-08T14:45:18.068Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "29", - "object_repr": "suzy@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:18.068Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "29", + "object_repr": "suzy@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 38, "fields": { - "action_time": "2023-03-08T14:45:24.900Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "28", - "object_repr": "suzanne@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:24.900Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "28", + "object_repr": "suzanne@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 39, "fields": { - "action_time": "2023-03-08T14:45:30.492Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "27", - "object_repr": "adelynn@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:30.492Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "27", + "object_repr": "adelynn@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 40, "fields": { - "action_time": "2023-03-08T14:45:34.892Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "26", - "object_repr": "adriana@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:34.892Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "26", + "object_repr": "adriana@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 41, "fields": { - "action_time": "2023-03-08T14:45:39.096Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "25", - "object_repr": "adam@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:39.096Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "25", + "object_repr": "adam@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 42, "fields": { - "action_time": "2023-03-08T14:45:43.026Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "24", - "object_repr": "stanford@test.com (ST)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T14:45:43.026Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "24", + "object_repr": "stanford@test.com (ST)", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 43, "fields": { - "action_time": "2023-03-08T14:45:57.014Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "23", - "object_repr": "stacey@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:57.014Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "23", + "object_repr": "stacey@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 44, "fields": { - "action_time": "2023-03-08T14:46:12.485Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "22", - "object_repr": "stefanie@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:12.485Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "22", + "object_repr": "stefanie@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 45, "fields": { - "action_time": "2023-03-08T14:46:29.160Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "21", - "object_repr": "stella@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:29.160Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "21", + "object_repr": "stella@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 46, "fields": { - "action_time": "2023-03-08T14:46:37.207Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "20", - "object_repr": "sterre@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:37.207Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "20", + "object_repr": "sterre@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 47, "fields": { - "action_time": "2023-03-08T14:46:47.188Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "19", - "object_repr": "sten@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:47.188Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "19", + "object_repr": "sten@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 48, "fields": { - "action_time": "2023-03-08T14:47:22.359Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "18", - "object_repr": "steven@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:47:22.359Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "18", + "object_repr": "steven@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 49, "fields": { - "action_time": "2023-03-08T14:48:21.802Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "16", - "object_repr": "stef@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:48:21.802Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "16", + "object_repr": "stef@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 50, "fields": { - "action_time": "2023-03-08T14:48:39.335Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "17", - "object_repr": "stephan@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:48:39.335Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "17", + "object_repr": "stephan@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 51, "fields": { - "action_time": "2023-03-08T14:49:35.174Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "14", - "object_repr": "sylvian@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:49:35.174Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "14", + "object_repr": "sylvian@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 52, "fields": { - "action_time": "2023-03-08T14:49:45.732Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "15", - "object_repr": "stijn@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:49:45.732Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "15", + "object_repr": "stijn@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 53, "fields": { - "action_time": "2023-03-08T14:49:56.248Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "13", - "object_repr": "sylke@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:49:56.248Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "13", + "object_repr": "sylke@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 54, "fields": { - "action_time": "2023-03-08T14:50:12.704Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "12", - "object_repr": "sylvano@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:50:12.704Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "12", + "object_repr": "sylvano@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 55, "fields": { - "action_time": "2023-03-08T14:50:25.896Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "11", - "object_repr": "sydney@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:50:25.896Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "11", + "object_repr": "sydney@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 56, "fields": { - "action_time": "2023-03-08T14:50:49.506Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "10", - "object_repr": "sylvie@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:50:49.506Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "10", + "object_repr": "sylvie@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 57, "fields": { - "action_time": "2023-03-08T14:52:39.891Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "31", - "object_repr": "admin@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:52:39.891Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "31", + "object_repr": "admin@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 58, "fields": { - "action_time": "2023-03-08T14:58:44.752Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "3", - "object_repr": "UGent Campussen in regio Gent", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T14:58:44.752Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "3", + "object_repr": "UGent Campussen in regio Gent", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 59, "fields": { - "action_time": "2023-03-08T15:00:27.928Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "4", - "object_repr": "UAntwerpen Campussen in regio Antwerpen", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:00:27.928Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "4", + "object_repr": "UAntwerpen Campussen in regio Antwerpen", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 60, "fields": { - "action_time": "2023-03-08T15:01:59.960Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "3", - "object_repr": "Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:01:59.960Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "3", + "object_repr": "Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 61, "fields": { - "action_time": "2023-03-08T15:02:48.962Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "4", - "object_repr": "Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:02:48.962Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "4", + "object_repr": "Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 62, "fields": { - "action_time": "2023-03-08T15:03:39.204Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "5", - "object_repr": "Middelheimlaan 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:03:39.204Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "5", + "object_repr": "Middelheimlaan 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 63, "fields": { - "action_time": "2023-03-08T15:04:14.499Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "6", - "object_repr": "Prinsstraat 13, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:04:14.499Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "6", + "object_repr": "Prinsstraat 13, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 64, "fields": { - "action_time": "2023-03-08T15:04:25.788Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "6", - "object_repr": "Prinsstraat 13, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T15:04:25.788Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "6", + "object_repr": "Prinsstraat 13, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 65, "fields": { - "action_time": "2023-03-08T15:08:08.606Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "3", - "object_repr": "Universiteitsplein 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:08.606Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "3", + "object_repr": "Universiteitsplein 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 66, "fields": { - "action_time": "2023-03-08T15:08:19.377Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "4", - "object_repr": "Groenenborgerlaan 171, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:19.377Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "4", + "object_repr": "Groenenborgerlaan 171, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 67, "fields": { - "action_time": "2023-03-08T15:08:27.356Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "5", - "object_repr": "Middelheimlaan 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:27.356Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "5", + "object_repr": "Middelheimlaan 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 68, "fields": { - "action_time": "2023-03-08T15:08:35.739Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "6", - "object_repr": "Prinsstraat 13, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:35.739Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "6", + "object_repr": "Prinsstraat 13, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 69, "fields": { - "action_time": "2023-03-08T15:17:18.139Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "7", - "object_repr": "Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:17:18.139Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "7", + "object_repr": "Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 70, "fields": { - "action_time": "2023-03-08T16:00:24.947Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "8", - "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:00:24.947Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "8", + "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 71, "fields": { - "action_time": "2023-03-08T16:00:58.312Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "9", - "object_repr": "Tweekerkenstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:00:58.312Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "9", + "object_repr": "Tweekerkenstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 72, "fields": { - "action_time": "2023-03-08T16:01:24.381Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "10", - "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:01:24.381Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "10", + "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 73, "fields": { - "action_time": "2023-03-08T16:01:35.072Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "7", - "object_repr": "Krijgslaan 281, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:01:35.072Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "7", + "object_repr": "Krijgslaan 281, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 74, "fields": { - "action_time": "2023-03-08T16:02:06.290Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "7", - "object_repr": "Krijgslaan 281, Gent 9000 op ronde UGent Campussen in regio Gent, index: 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:02:06.290Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "7", + "object_repr": "Krijgslaan 281, Gent 9000 op ronde UGent Campussen in regio Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 75, "fields": { - "action_time": "2023-03-08T16:08:52.700Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "8", - "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000 op ronde UGent Campussen in regio Gent, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:08:52.700Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "8", + "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000 op ronde UGent Campussen in regio Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 76, "fields": { - "action_time": "2023-03-08T16:09:02.005Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "9", - "object_repr": "Tweekerkenstraat 2, Gent 9000 op ronde UGent Campussen in regio Gent, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:09:02.005Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "9", + "object_repr": "Tweekerkenstraat 2, Gent 9000 op ronde UGent Campussen in regio Gent, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 77, "fields": { - "action_time": "2023-03-08T16:09:12.402Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "10", - "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000 op ronde UGent Campussen in regio Gent, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:09:12.402Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "10", + "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000 op ronde UGent Campussen in regio Gent, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 78, "fields": { - "action_time": "2023-03-08T16:12:03.299Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "11", - "object_repr": "Velstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:12:03.299Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "11", + "object_repr": "Velstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 79, "fields": { - "action_time": "2023-03-08T16:12:21.051Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 1, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Client number\", \"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:12:21.051Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 1, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Client number\", \"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 80, "fields": { - "action_time": "2023-03-08T16:16:40.922Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "11", - "object_repr": "Velstraat 2, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:16:40.922Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "11", + "object_repr": "Velstraat 2, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 81, "fields": { - "action_time": "2023-03-08T16:16:45.022Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 2, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:16:45.022Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 2, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 82, "fields": { - "action_time": "2023-03-08T16:20:59.890Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 1, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:20:59.890Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 1, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 83, "fields": { - "action_time": "2023-03-08T16:21:25.140Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "12", - "object_repr": "Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:21:25.140Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "12", + "object_repr": "Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 84, "fields": { - "action_time": "2023-03-08T16:21:52.660Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "13", - "object_repr": "Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:21:52.660Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "13", + "object_repr": "Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 85, "fields": { - "action_time": "2023-03-08T16:22:19.176Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:22:19.176Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 86, "fields": { - "action_time": "2023-03-08T16:25:43.960Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:25:43.960Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 87, "fields": { - "action_time": "2023-03-08T16:26:04.709Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T16:26:04.709Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 88, "fields": { - "action_time": "2023-03-08T16:26:46.183Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T16:26:46.183Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 89, "fields": { - "action_time": "2023-03-08T16:26:55.424Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 1, Gent 9000", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T16:26:55.424Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 1, Gent 9000", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 90, "fields": { - "action_time": "2023-03-08T16:28:45.475Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "12", - "object_repr": "Veldstraat 3, Gent 9000 op ronde Centrum in regio Gent, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:28:45.475Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "12", + "object_repr": "Veldstraat 3, Gent 9000 op ronde Centrum in regio Gent, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 91, "fields": { - "action_time": "2023-03-08T16:28:54.410Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "13", - "object_repr": "Veldstraat 4, Gent 9000 op ronde Centrum in regio Gent, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:28:54.410Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "13", + "object_repr": "Veldstraat 4, Gent 9000 op ronde Centrum in regio Gent, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 92, "fields": { - "action_time": "2023-03-08T16:30:07.611Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "1", - "object_repr": "Grote Markt 1, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:30:07.611Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "1", + "object_repr": "Grote Markt 1, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 93, "fields": { - "action_time": "2023-03-08T16:30:34.261Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "14", - "object_repr": "Grote Markt 2, Antwerpen 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:30:34.261Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "14", + "object_repr": "Grote Markt 2, Antwerpen 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 94, "fields": { - "action_time": "2023-03-08T16:30:59.258Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "15", - "object_repr": "Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:30:59.258Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "15", + "object_repr": "Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 95, "fields": { - "action_time": "2023-03-08T16:31:08.274Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "14", - "object_repr": "Grote Markt 2, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Postal code\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:31:08.274Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "14", + "object_repr": "Grote Markt 2, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Postal code\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 96, "fields": { - "action_time": "2023-03-08T16:31:44.676Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "16", - "object_repr": "Grote Markt 4, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:31:44.676Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "16", + "object_repr": "Grote Markt 4, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 97, "fields": { - "action_time": "2023-03-08T16:31:55.261Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "14", - "object_repr": "Grote Markt 2, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:31:55.261Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "14", + "object_repr": "Grote Markt 2, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 98, "fields": { - "action_time": "2023-03-08T16:32:01.898Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "15", - "object_repr": "Grote Markt 3, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:01.898Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "15", + "object_repr": "Grote Markt 3, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 99, "fields": { - "action_time": "2023-03-08T16:32:09.892Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "16", - "object_repr": "Grote Markt 4, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:09.892Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "16", + "object_repr": "Grote Markt 4, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 100, "fields": { - "action_time": "2023-03-08T16:32:37.550Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "1", - "object_repr": "GFT op 2023-03-08 voor 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:37.550Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "1", + "object_repr": "GFT op 2023-03-08 voor 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 101, "fields": { - "action_time": "2023-03-08T16:32:49.793Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "2", - "object_repr": "GLS op 2023-03-09 voor 12", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:49.793Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "2", + "object_repr": "GLS op 2023-03-09 voor 12", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 102, "fields": { - "action_time": "2023-03-08T16:33:14.208Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "3", - "object_repr": "GRF op 2023-03-11 voor 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:33:14.208Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "3", + "object_repr": "GRF op 2023-03-11 voor 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 103, "fields": { - "action_time": "2023-03-08T16:33:21.994Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "4", - "object_repr": "PMD op 2023-03-15 voor 10", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:33:21.994Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "4", + "object_repr": "PMD op 2023-03-15 voor 10", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 104, "fields": { - "action_time": "2023-03-08T16:33:56.022Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "5", - "object_repr": "PAP op 2023-03-17 voor 16", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:33:56.022Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "5", + "object_repr": "PAP op 2023-03-17 voor 16", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 105, "fields": { - "action_time": "2023-03-08T17:01:50.343Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "1", - "object_repr": "GFT op 2023-03-08 voor Grote Markt 1, Antwerpen 2000", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T17:01:50.343Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "1", + "object_repr": "GFT op 2023-03-08 voor Grote Markt 1, Antwerpen 2000", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 106, "fields": { - "action_time": "2023-03-08T17:22:53.560Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "6", - "object_repr": "PMD op 2023-03-10 voor Grote Markt 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:22:53.560Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "6", + "object_repr": "PMD op 2023-03-10 voor Grote Markt 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 107, "fields": { - "action_time": "2023-03-08T17:23:21.034Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "7", - "object_repr": "RES op 2023-03-22 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:23:21.034Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "7", + "object_repr": "RES op 2023-03-22 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 108, "fields": { - "action_time": "2023-03-08T17:23:32.286Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "8", - "object_repr": "PAP op 2023-03-19 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:23:32.286Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "8", + "object_repr": "PAP op 2023-03-19 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 109, "fields": { - "action_time": "2023-03-08T17:23:48.861Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "9", - "object_repr": "PAP op 2023-03-08 voor Grote Markt 2, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:23:48.861Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "9", + "object_repr": "PAP op 2023-03-08 voor Grote Markt 2, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 110, "fields": { - "action_time": "2023-03-08T17:24:03.997Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "10", - "object_repr": "KER op 2023-03-09 voor Grote Markt 2, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:03.997Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "10", + "object_repr": "KER op 2023-03-09 voor Grote Markt 2, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 111, "fields": { - "action_time": "2023-03-08T17:24:13.531Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "8", - "object_repr": "PAP op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:13.531Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "8", + "object_repr": "PAP op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 112, "fields": { - "action_time": "2023-03-08T17:24:17.210Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "7", - "object_repr": "RES op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:17.210Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "7", + "object_repr": "RES op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 113, "fields": { - "action_time": "2023-03-08T17:24:22.493Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "8", - "object_repr": "PAP op 2023-03-08 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:22.493Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "8", + "object_repr": "PAP op 2023-03-08 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 114, "fields": { - "action_time": "2023-03-08T17:24:45.436Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "2", - "object_repr": "GLS op 2023-03-09 voor Veldstraat 3, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-03-08T17:24:45.436Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "2", + "object_repr": "GLS op 2023-03-09 voor Veldstraat 3, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 115, "fields": { - "action_time": "2023-03-08T17:24:46.002Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "3", - "object_repr": "GRF op 2023-03-11 voor Universiteitsplein 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-03-08T17:24:46.002Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "3", + "object_repr": "GRF op 2023-03-11 voor Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 116, "fields": { - "action_time": "2023-03-08T17:24:46.573Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "4", - "object_repr": "PMD op 2023-03-15 voor Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-03-08T17:24:46.573Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "4", + "object_repr": "PMD op 2023-03-15 voor Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 117, "fields": { - "action_time": "2023-03-08T17:25:04.860Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "5", - "object_repr": "PAP op 2023-03-08 voor Grote Markt 4, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:04.860Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "5", + "object_repr": "PAP op 2023-03-08 voor Grote Markt 4, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 118, "fields": { - "action_time": "2023-03-08T17:25:13.574Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "11", - "object_repr": "GLS op 2023-03-09 voor Grote Markt 4, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:13.574Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "11", + "object_repr": "GLS op 2023-03-09 voor Grote Markt 4, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 119, "fields": { - "action_time": "2023-03-08T17:25:32.768Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "12", - "object_repr": "GFT op 2023-03-08 voor Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:32.768Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "12", + "object_repr": "GFT op 2023-03-08 voor Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 120, "fields": { - "action_time": "2023-03-08T17:25:39.351Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "13", - "object_repr": "KER op 2023-03-09 voor Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:39.351Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "13", + "object_repr": "KER op 2023-03-09 voor Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 121, "fields": { - "action_time": "2023-03-08T17:25:50.695Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "14", - "object_repr": "PMD op 2023-03-08 voor Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:50.695Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "14", + "object_repr": "PMD op 2023-03-08 voor Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 122, "fields": { - "action_time": "2023-03-08T17:26:00.684Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "15", - "object_repr": "GLS op 2023-03-09 voor Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:00.684Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "15", + "object_repr": "GLS op 2023-03-09 voor Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 123, "fields": { - "action_time": "2023-03-08T17:26:10.633Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "16", - "object_repr": "PAP op 2023-03-08 voor Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:10.633Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "16", + "object_repr": "PAP op 2023-03-08 voor Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 124, "fields": { - "action_time": "2023-03-08T17:26:17.012Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "17", - "object_repr": "PMD op 2023-03-09 voor Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:17.012Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "17", + "object_repr": "PMD op 2023-03-09 voor Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 125, "fields": { - "action_time": "2023-03-08T17:26:27.293Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "18", - "object_repr": "GRF op 2023-03-08 voor Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:27.293Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "18", + "object_repr": "GRF op 2023-03-08 voor Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 126, "fields": { - "action_time": "2023-03-08T17:26:35.922Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "19", - "object_repr": "KER op 2023-03-09 voor Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:35.922Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "19", + "object_repr": "KER op 2023-03-09 voor Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 127, "fields": { - "action_time": "2023-03-08T17:26:52.792Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "20", - "object_repr": "GFT op 2023-03-08 voor Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:52.792Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "20", + "object_repr": "GFT op 2023-03-08 voor Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 128, "fields": { - "action_time": "2023-03-08T17:26:59.304Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "21", - "object_repr": "GRF op 2023-03-09 voor Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:59.304Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "21", + "object_repr": "GRF op 2023-03-09 voor Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 129, "fields": { - "action_time": "2023-03-08T17:27:07.374Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "22", - "object_repr": "GRF op 2023-03-08 voor Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:07.374Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "22", + "object_repr": "GRF op 2023-03-08 voor Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 130, "fields": { - "action_time": "2023-03-08T17:27:15.700Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "23", - "object_repr": "PAP op 2023-03-09 voor Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:15.700Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "23", + "object_repr": "PAP op 2023-03-09 voor Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 131, "fields": { - "action_time": "2023-03-08T17:27:21.716Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "24", - "object_repr": "PMD op 2023-03-08 voor Tweekerkenstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:21.716Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "24", + "object_repr": "PMD op 2023-03-08 voor Tweekerkenstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 132, "fields": { - "action_time": "2023-03-08T17:27:27.642Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "25", - "object_repr": "RES op 2023-03-09 voor Tweekerkenstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:27.642Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "25", + "object_repr": "RES op 2023-03-09 voor Tweekerkenstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 133, "fields": { - "action_time": "2023-03-08T17:27:34.788Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "26", - "object_repr": "PAP op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:34.788Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "26", + "object_repr": "PAP op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 134, "fields": { - "action_time": "2023-03-08T17:27:39.461Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "27", - "object_repr": "GLS op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:39.461Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "27", + "object_repr": "GLS op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 135, "fields": { - "action_time": "2023-03-08T17:27:45.463Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "28", - "object_repr": "GLS op 2023-03-08 voor Prinsstraat 13, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:45.463Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "28", + "object_repr": "GLS op 2023-03-08 voor Prinsstraat 13, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 136, "fields": { - "action_time": "2023-03-08T17:27:53.937Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "29", - "object_repr": "KER op 2023-03-09 voor Prinsstraat 13, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:53.937Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "29", + "object_repr": "KER op 2023-03-09 voor Prinsstraat 13, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 137, "fields": { - "action_time": "2023-03-08T17:28:00.222Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "30", - "object_repr": "PMD op 2023-03-08 voor Middelheimlaan 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:28:00.222Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "30", + "object_repr": "PMD op 2023-03-08 voor Middelheimlaan 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 138, "fields": { - "action_time": "2023-03-08T17:30:56.771Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "31", - "object_repr": "GRF op 2023-03-09 voor Middelheimlaan 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:30:56.771Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "31", + "object_repr": "GRF op 2023-03-09 voor Middelheimlaan 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 139, "fields": { - "action_time": "2023-03-08T17:31:05.688Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "32", - "object_repr": "GLS op 2023-03-08 voor Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:05.688Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "32", + "object_repr": "GLS op 2023-03-08 voor Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 140, "fields": { - "action_time": "2023-03-08T17:31:11.664Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "33", - "object_repr": "RES op 2023-03-09 voor Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:11.664Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "33", + "object_repr": "RES op 2023-03-09 voor Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 141, "fields": { - "action_time": "2023-03-08T17:31:20.537Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "34", - "object_repr": "PAP op 2023-03-08 voor Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:20.537Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "34", + "object_repr": "PAP op 2023-03-08 voor Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 142, "fields": { - "action_time": "2023-03-08T17:31:26.439Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "35", - "object_repr": "GFT op 2023-03-09 voor Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:26.439Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "35", + "object_repr": "GFT op 2023-03-09 voor Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 154, "fields": { - "action_time": "2023-03-09T12:36:55.073Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "6", - "object_repr": "PMD op 2023-03-09 voor Grote Markt 1, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-09T12:36:55.073Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "6", + "object_repr": "PMD op 2023-03-09 voor Grote Markt 1, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 164, "fields": { - "action_time": "2023-03-21T22:18:39.554Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "region" - ], - "object_id": "3", - "object_repr": "Brugge", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:18:39.554Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "region" + ], + "object_id": "3", + "object_repr": "Brugge", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 165, "fields": { - "action_time": "2023-03-21T22:24:05.620Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "1", - "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:24:05.620Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "1", + "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 166, "fields": { - "action_time": "2023-03-21T22:32:39.799Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "2", - "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:32:39.799Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "2", + "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 167, "fields": { - "action_time": "2023-03-21T22:34:39.055Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "3", - "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:34:39.055Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "3", + "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 168, "fields": { - "action_time": "2023-03-21T22:36:01.119Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "4", - "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:36:01.119Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "4", + "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 169, "fields": { - "action_time": "2023-03-21T22:37:43.102Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "5", - "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:37:43.102Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "5", + "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 170, "fields": { - "action_time": "2023-03-21T22:42:00.338Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "6", - "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:42:00.338Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "6", + "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 171, "fields": { - "action_time": "2023-03-21T22:46:39.905Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "7", - "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:46:39.905Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "7", + "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 172, "fields": { - "action_time": "2023-03-21T22:47:07.799Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "17", - "object_repr": "markt 5, Brugge 8000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" - } -}, -{ + "action_time": "2023-03-21T22:47:07.799Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "17", + "object_repr": "markt 5, Brugge 8000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 173, "fields": { - "action_time": "2023-03-21T22:47:43.442Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "18", - "object_repr": "steenstraat 6, Brugge 8000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" - } -}, -{ + "action_time": "2023-03-21T22:47:43.442Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "18", + "object_repr": "steenstraat 6, Brugge 8000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 174, "fields": { - "action_time": "2023-03-21T22:48:57.933Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "19", - "object_repr": "'t Zand 2, Brugge 8310", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:48:57.933Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "19", + "object_repr": "'t Zand 2, Brugge 8310", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 175, "fields": { - "action_time": "2023-03-21T22:49:12.262Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "16", - "object_repr": "Grote Markt 4, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Name\"]}}]" - } -}, -{ + "action_time": "2023-03-21T22:49:12.262Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "16", + "object_repr": "Grote Markt 4, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Name\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 176, "fields": { - "action_time": "2023-03-21T22:52:05.573Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "emailtemplate" - ], - "object_id": "1", - "object_repr": "EmailTemplate object (1)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:52:05.573Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "emailtemplate" + ], + "object_id": "1", + "object_repr": "EmailTemplate object (1)", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 177, "fields": { - "action_time": "2023-03-21T22:54:13.985Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "emailtemplate" - ], - "object_id": "2", - "object_repr": "EmailTemplate object (2)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:54:13.985Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "emailtemplate" + ], + "object_id": "2", + "object_repr": "EmailTemplate object (2)", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 178, "fields": { - "action_time": "2023-03-21T22:57:41.059Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "1", - "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 23:57:00+01:00) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:57:41.059Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "1", + "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 23:57:00+01:00) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 179, "fields": { - "action_time": "2023-04-01T12:58:51.201Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "1", - "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-01", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T12:58:51.201Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "1", + "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-01", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 180, "fields": { - "action_time": "2023-04-01T12:59:01.377Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "2", - "object_repr": "stef@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-01", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T12:59:01.377Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "2", + "object_repr": "stef@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-01", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 181, "fields": { - "action_time": "2023-04-01T12:59:15.584Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "3", - "object_repr": "steven@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-18", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T12:59:15.584Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "3", + "object_repr": "steven@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 182, "fields": { - "action_time": "2023-04-01T12:59:29.614Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "4", - "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-11", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T12:59:29.614Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "4", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-11", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 183, "fields": { - "action_time": "2023-04-01T12:59:49.127Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "5", - "object_repr": "sten@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-11", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T12:59:49.127Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "5", + "object_repr": "sten@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-11", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 184, "fields": { - "action_time": "2023-04-01T13:00:04.262Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "6", - "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-24", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:00:04.262Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "6", + "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-24", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 185, "fields": { - "action_time": "2023-04-01T13:01:08.211Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "7", - "object_repr": "steven@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-27", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:01:08.211Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "7", + "object_repr": "steven@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-27", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 186, "fields": { - "action_time": "2023-04-01T13:01:20.487Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "8", - "object_repr": "sten@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-22", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:01:20.487Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "8", + "object_repr": "sten@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-22", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 187, "fields": { - "action_time": "2023-04-01T13:01:34.284Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "9", - "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-17", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:01:34.284Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "9", + "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-17", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 188, "fields": { - "action_time": "2023-04-01T13:01:54.436Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "10", - "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-10", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:01:54.436Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "10", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-10", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 189, "fields": { - "action_time": "2023-04-01T13:02:04.221Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "11", - "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-19", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:02:04.221Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "11", + "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 190, "fields": { - "action_time": "2023-04-01T13:02:35.265Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "12", - "object_repr": "stacey@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-19", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:02:35.265Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "12", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 191, "fields": { - "action_time": "2023-04-01T13:02:53.286Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "13", - "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-18", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:02:53.286Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "13", + "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 192, "fields": { - "action_time": "2023-04-01T13:04:14.573Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "14", - "object_repr": "stella@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-26", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:04:14.573Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "14", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-26", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 193, "fields": { - "action_time": "2023-04-01T13:04:39.964Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "15", - "object_repr": "stacey@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-10", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:04:39.964Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "15", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-10", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 194, "fields": { - "action_time": "2023-04-01T13:05:11.380Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "16", - "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-04", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:05:11.380Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "16", + "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-04", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 195, "fields": { - "action_time": "2023-04-01T13:05:27.691Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "17", - "object_repr": "sterre@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-16", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:05:27.691Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "17", + "object_repr": "sterre@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-16", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 196, "fields": { - "action_time": "2023-04-01T13:06:08.144Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "1", - "object_repr": "AA for Veldstraat 1, Gent 9000 on tour Tour Centrum in region Gent, index: 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:06:08.144Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "1", + "object_repr": "AA for Veldstraat 1, Gent 9000 on tour Tour Centrum in region Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 197, "fields": { - "action_time": "2023-04-01T13:06:32.588Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "2", - "object_repr": "VE for Groenenborgerlaan 171, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:06:32.588Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "2", + "object_repr": "VE for Groenenborgerlaan 171, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 198, "fields": { - "action_time": "2023-04-01T13:07:35.410Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "3", - "object_repr": "OP for Tweekerkenstraat 2, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:07:35.410Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "3", + "object_repr": "OP for Tweekerkenstraat 2, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 199, "fields": { - "action_time": "2023-04-01T13:07:58.217Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "4", - "object_repr": "BI for Veldstraat 1, Gent 9000 on tour Tour Centrum in region Gent, index: 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:07:58.217Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "4", + "object_repr": "BI for Veldstraat 1, Gent 9000 on tour Tour Centrum in region Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 200, "fields": { - "action_time": "2023-04-01T13:08:15.802Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "5", - "object_repr": "VE for Krijgslaan 281, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:08:15.802Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "5", + "object_repr": "VE for Krijgslaan 281, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 201, "fields": { - "action_time": "2023-04-01T13:08:28.528Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "6", - "object_repr": "AA for Sint-Pietersnieuwstraat 33, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:08:28.528Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "6", + "object_repr": "AA for Sint-Pietersnieuwstraat 33, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 202, "fields": { - "action_time": "2023-04-01T13:08:47.842Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "7", - "object_repr": "AA for Veldstraat 2, Gent 9000 on tour Tour Centrum in region Gent, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:08:47.842Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "7", + "object_repr": "AA for Veldstraat 2, Gent 9000 on tour Tour Centrum in region Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 203, "fields": { - "action_time": "2023-04-01T13:08:59.242Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "8", - "object_repr": "OP for Grote Markt 3, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:08:59.242Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "8", + "object_repr": "OP for Grote Markt 3, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 204, "fields": { - "action_time": "2023-04-01T13:09:21.365Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "9", - "object_repr": "BI for Sint-Pietersnieuwstraat 33, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:09:21.365Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "9", + "object_repr": "BI for Sint-Pietersnieuwstraat 33, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 205, "fields": { - "action_time": "2023-04-01T13:09:34.640Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "10", - "object_repr": "OP for Grote Markt 2, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:09:34.640Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "10", + "object_repr": "OP for Grote Markt 2, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 206, "fields": { - "action_time": "2023-04-01T13:09:53.946Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "11", - "object_repr": "AA for Veldstraat 4, Gent 9000 on tour Tour Centrum in region Gent, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:09:53.946Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "11", + "object_repr": "AA for Veldstraat 4, Gent 9000 on tour Tour Centrum in region Gent, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 207, "fields": { - "action_time": "2023-04-01T13:10:16.570Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "12", - "object_repr": "BI for Prinsstraat 13, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:10:16.570Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "12", + "object_repr": "BI for Prinsstraat 13, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 208, "fields": { - "action_time": "2023-04-01T13:10:35.670Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "13", - "object_repr": "OP for Grote Markt 4, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:10:35.670Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "13", + "object_repr": "OP for Grote Markt 4, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 209, "fields": { - "action_time": "2023-04-01T13:10:58.506Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "14", - "object_repr": "VE for Middelheimlaan 1, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-01T13:10:58.506Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "14", + "object_repr": "VE for Middelheimlaan 1, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 210, "fields": { - "action_time": "2023-04-19T18:41:05.524Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "18", - "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-19", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-19T18:41:05.524Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "18", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 211, "fields": { - "action_time": "2023-04-20T09:00:33.526Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "2", - "object_repr": "Comment: De deur is moeilijk te openen. (2023-04-20 11:00:08+02:00) for Grote Markt 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:00:33.526Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "2", + "object_repr": "Comment: De deur is moeilijk te openen. (2023-04-20 11:00:08+02:00) for Grote Markt 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 212, "fields": { - "action_time": "2023-04-20T09:00:43.199Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "1", - "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 22:57:00+00:00) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:00:43.199Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "1", + "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 22:57:00+00:00) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 213, "fields": { - "action_time": "2023-04-20T09:02:03.877Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "3", - "object_repr": "Comment: De code van de poort is 1234. (2023-04-20 11:01:59+02:00) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:02:03.877Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "3", + "object_repr": "Comment: De code van de poort is 1234. (2023-04-20 11:01:59+02:00) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 214, "fields": { - "action_time": "2023-04-20T09:02:29.752Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "4", - "object_repr": "Comment: De containers staan in verschillende ruimtes. (2023-04-20 11:02:26+02:00) for Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:02:29.752Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "4", + "object_repr": "Comment: De containers staan in verschillende ruimtes. (2023-04-20 11:02:26+02:00) for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 215, "fields": { - "action_time": "2023-04-20T09:03:01.701Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "5", - "object_repr": "Comment: Je moet langs de achterdeur van het gebouw binnen. (2023-04-20 11:02:54+02:00) for Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:03:01.701Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "5", + "object_repr": "Comment: Je moet langs de achterdeur van het gebouw binnen. (2023-04-20 11:02:54+02:00) for Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 216, "fields": { - "action_time": "2023-04-20T09:03:50.482Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "6", - "object_repr": "Comment: Bel aan bij bewoner op nummer 3, deze laat je binnen. (2023-04-20 11:03:44+02:00) for Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:03:50.482Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "6", + "object_repr": "Comment: Bel aan bij bewoner op nummer 3, deze laat je binnen. (2023-04-20 11:03:44+02:00) for Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 217, "fields": { - "action_time": "2023-04-20T09:04:13.174Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "7", - "object_repr": "Comment: De code van de poort is 5395 (2023-04-20 11:04:09+02:00) for Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:04:13.174Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "7", + "object_repr": "Comment: De code van de poort is 5395 (2023-04-20 11:04:09+02:00) for Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 218, "fields": { - "action_time": "2023-04-20T09:04:41.617Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "8", - "object_repr": "Comment: PMD en REST staan op het gelijkvloers, de rest in de kelder. (2023-04-20 11:04:30+02:00) for Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:04:41.617Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "8", + "object_repr": "Comment: PMD en REST staan op het gelijkvloers, de rest in de kelder. (2023-04-20 11:04:30+02:00) for Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 219, "fields": { - "action_time": "2023-04-20T09:05:08.828Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "9", - "object_repr": "Comment: Je moet langs de grote poort binnen. (2023-04-20 11:04:49+02:00) for Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:05:08.828Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "9", + "object_repr": "Comment: Je moet langs de grote poort binnen. (2023-04-20 11:04:49+02:00) for Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 220, "fields": { - "action_time": "2023-04-20T09:06:36.454Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "10", - "object_repr": "Comment: De containers hangen vast met een slot (code 7361) (2023-04-20 11:05:37+02:00) for Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:06:36.454Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "10", + "object_repr": "Comment: De containers hangen vast met een slot (code 7361) (2023-04-20 11:05:37+02:00) for Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 221, "fields": { - "action_time": "2023-04-20T09:13:43.607Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "20", - "object_repr": "Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:13:43.607Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "20", + "object_repr": "Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 222, "fields": { - "action_time": "2023-04-20T09:15:45.511Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "21", - "object_repr": "Stropersgracht 32, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:15:45.511Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "21", + "object_repr": "Stropersgracht 32, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 223, "fields": { - "action_time": "2023-04-20T09:16:57.832Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "36", - "object_repr": "GRF on 2023-04-20 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:16:57.832Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "36", + "object_repr": "GRF on 2023-04-20 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 224, "fields": { - "action_time": "2023-04-20T09:17:06.104Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "37", - "object_repr": "GLS on 2023-04-20 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:06.104Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "37", + "object_repr": "GLS on 2023-04-20 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 225, "fields": { - "action_time": "2023-04-20T09:17:24.146Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "38", - "object_repr": "PAP on 2023-04-21 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:24.146Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "38", + "object_repr": "PAP on 2023-04-21 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 226, "fields": { - "action_time": "2023-04-20T09:17:35.731Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "39", - "object_repr": "PMD on 2023-04-21 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:35.731Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "39", + "object_repr": "PMD on 2023-04-21 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 227, "fields": { - "action_time": "2023-04-20T09:17:48.776Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "40", - "object_repr": "RES on 2023-04-21 at Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:48.776Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "40", + "object_repr": "RES on 2023-04-21 at Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 228, "fields": { - "action_time": "2023-04-20T09:18:02.182Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "41", - "object_repr": "GFT on 2023-04-20 at Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:02.182Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "41", + "object_repr": "GFT on 2023-04-20 at Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 229, "fields": { - "action_time": "2023-04-20T09:18:14.098Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "42", - "object_repr": "PMD on 2023-04-21 at Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:14.098Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "42", + "object_repr": "PMD on 2023-04-21 at Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 230, "fields": { - "action_time": "2023-04-20T09:18:25.335Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "43", - "object_repr": "GLS on 2023-04-20 at Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:25.335Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "43", + "object_repr": "GLS on 2023-04-20 at Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 231, "fields": { - "action_time": "2023-04-20T09:18:43.221Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "44", - "object_repr": "PMD on 2023-04-21 at Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:43.221Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "44", + "object_repr": "PMD on 2023-04-21 at Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 232, "fields": { - "action_time": "2023-04-20T09:18:53.567Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "45", - "object_repr": "RES on 2023-04-21 at Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:53.567Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "45", + "object_repr": "RES on 2023-04-21 at Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 233, "fields": { - "action_time": "2023-04-20T09:19:21.874Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "46", - "object_repr": "RES on 2023-04-21 at Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:19:21.874Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "46", + "object_repr": "RES on 2023-04-21 at Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 234, "fields": { - "action_time": "2023-04-20T09:19:35.166Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "47", - "object_repr": "PAP on 2023-04-20 at Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:19:35.166Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "47", + "object_repr": "PAP on 2023-04-20 at Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 235, "fields": { - "action_time": "2023-04-20T09:19:52.000Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "48", - "object_repr": "GRF on 2023-04-21 at Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:19:52.000Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "48", + "object_repr": "GRF on 2023-04-21 at Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 236, "fields": { - "action_time": "2023-04-20T09:20:34.267Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "49", - "object_repr": "GRF on 2023-04-20 at Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:20:34.267Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "49", + "object_repr": "GRF on 2023-04-20 at Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 237, "fields": { - "action_time": "2023-04-20T09:20:47.247Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "50", - "object_repr": "RES on 2023-04-21 at 't Zand 2, Brugge 8310", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:20:47.247Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "50", + "object_repr": "RES on 2023-04-21 at 't Zand 2, Brugge 8310", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 238, "fields": { - "action_time": "2023-04-20T09:20:58.392Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "51", - "object_repr": "GLS on 2023-04-21 at Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:20:58.392Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "51", + "object_repr": "GLS on 2023-04-21 at Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 239, "fields": { - "action_time": "2023-04-20T09:21:18.667Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "52", - "object_repr": "GFT on 2023-04-21 at Stropersgracht 32, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:21:18.667Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "52", + "object_repr": "GFT on 2023-04-21 at Stropersgracht 32, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 240, "fields": { - "action_time": "2023-04-20T09:21:31.594Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "53", - "object_repr": "GLS on 2023-04-20 at Stropersgracht 32, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:21:31.594Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "53", + "object_repr": "GLS on 2023-04-20 at Stropersgracht 32, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 241, "fields": { - "action_time": "2023-04-20T09:21:49.005Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "54", - "object_repr": "GFT on 2023-04-21 at Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:21:49.005Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "54", + "object_repr": "GFT on 2023-04-21 at Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 242, "fields": { - "action_time": "2023-04-20T09:22:22.266Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "17", - "object_repr": "markt 5, Brugge 8000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:22:22.266Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "17", + "object_repr": "markt 5, Brugge 8000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 243, "fields": { - "action_time": "2023-04-20T09:27:53.135Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "7", - "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.135Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "7", + "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 244, "fields": { - "action_time": "2023-04-20T09:27:53.148Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "6", - "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.148Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "6", + "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 245, "fields": { - "action_time": "2023-04-20T09:27:53.152Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "5", - "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.152Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "5", + "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 246, "fields": { - "action_time": "2023-04-20T09:27:53.154Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "4", - "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.154Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "4", + "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 247, "fields": { - "action_time": "2023-04-20T09:27:53.157Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "3", - "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.157Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "3", + "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 248, "fields": { - "action_time": "2023-04-20T09:27:53.159Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "2", - "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.159Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "2", + "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 249, "fields": { - "action_time": "2023-04-20T09:27:53.161Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "1", - "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.161Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "1", + "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 250, "fields": { - "action_time": "2023-04-20T09:28:36.399Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "19", - "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-20", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:28:36.399Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "19", + "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 251, "fields": { - "action_time": "2023-04-20T09:28:55.003Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "7", - "object_repr": "Tour testSequence in region Gent", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:28:55.003Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "7", + "object_repr": "Tour testSequence in region Gent", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 252, "fields": { - "action_time": "2023-04-20T09:28:55.017Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "6", - "object_repr": "Tour hoihoi in region Gent", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:28:55.017Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "6", + "object_repr": "Tour hoihoi in region Gent", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 253, "fields": { - "action_time": "2023-04-20T09:28:55.019Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "5", - "object_repr": "Tour test in region Gent", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:28:55.019Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "5", + "object_repr": "Tour test in region Gent", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 254, "fields": { - "action_time": "2023-04-20T09:29:30.486Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "20", - "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-20", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:29:30.486Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "20", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 255, "fields": { - "action_time": "2023-04-20T09:29:40.809Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "21", - "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-20", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:29:40.809Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "21", + "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 256, "fields": { - "action_time": "2023-04-20T09:29:51.526Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "22", - "object_repr": "steven@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-20", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:29:51.526Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "22", + "object_repr": "steven@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 257, "fields": { - "action_time": "2023-04-20T09:30:04.129Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "23", - "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-21", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:30:04.129Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "23", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 258, "fields": { - "action_time": "2023-04-20T09:30:21.302Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "24", - "object_repr": "sterre@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-21", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:30:21.302Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "24", + "object_repr": "sterre@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 259, "fields": { - "action_time": "2023-04-20T09:30:59.908Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "25", - "object_repr": "stacey@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-21", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:30:59.908Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "25", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 260, "fields": { - "action_time": "2023-04-20T09:31:16.385Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "26", - "object_repr": "stef@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-21", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:31:16.385Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "26", + "object_repr": "stef@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 283, "fields": { - "action_time": "2023-04-20T10:32:27.463Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "14", - "object_repr": "VE for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.463Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "14", + "object_repr": "VE for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 284, "fields": { - "action_time": "2023-04-20T10:32:27.508Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "13", - "object_repr": "OP for Universiteitsplein 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.508Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "13", + "object_repr": "OP for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 285, "fields": { - "action_time": "2023-04-20T10:32:27.511Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "12", - "object_repr": "BI for Krijgslaan 281, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.511Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "12", + "object_repr": "BI for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 286, "fields": { - "action_time": "2023-04-20T10:32:27.515Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "11", - "object_repr": "AA for Prinsstraat 13, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.515Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "11", + "object_repr": "AA for Prinsstraat 13, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 287, "fields": { - "action_time": "2023-04-20T10:32:27.518Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "10", - "object_repr": "OP for Middelheimlaan 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.518Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "10", + "object_repr": "OP for Middelheimlaan 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 288, "fields": { - "action_time": "2023-04-20T10:32:27.521Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "9", - "object_repr": "BI for Universiteitsplein 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.521Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "9", + "object_repr": "BI for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 289, "fields": { - "action_time": "2023-04-20T10:32:27.524Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "8", - "object_repr": "OP for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.524Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "8", + "object_repr": "OP for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 290, "fields": { - "action_time": "2023-04-20T10:32:27.527Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "7", - "object_repr": "AA for Krijgslaan 281, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.527Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "7", + "object_repr": "AA for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 291, "fields": { - "action_time": "2023-04-20T10:32:27.530Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "6", - "object_repr": "AA for Karel Lodewijk Ledeganckstraat 35, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.530Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "6", + "object_repr": "AA for Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 292, "fields": { - "action_time": "2023-04-20T10:32:27.533Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "5", - "object_repr": "VE for Krijgslaan 281, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.533Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "5", + "object_repr": "VE for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 293, "fields": { - "action_time": "2023-04-20T10:32:27.536Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "4", - "object_repr": "BI for Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.536Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "4", + "object_repr": "BI for Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 294, "fields": { - "action_time": "2023-04-20T10:32:27.539Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "3", - "object_repr": "OP for Universiteitsplein 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.539Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "3", + "object_repr": "OP for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 295, "fields": { - "action_time": "2023-04-20T10:32:27.542Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "2", - "object_repr": "VE for Universiteitsplein 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.542Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "2", + "object_repr": "VE for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 296, "fields": { - "action_time": "2023-04-20T10:32:27.545Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "1", - "object_repr": "AA for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T10:32:27.545Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "1", + "object_repr": "AA for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 297, "fields": { - "action_time": "2023-04-20T10:33:50.458Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "15", - "object_repr": "AA for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T10:33:50.458Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "15", + "object_repr": "AA for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 298, "fields": { - "action_time": "2023-04-20T10:34:10.541Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "16", - "object_repr": "BI for Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T10:34:10.541Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "16", + "object_repr": "BI for Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 299, "fields": { - "action_time": "2023-04-20T10:35:10.608Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "17", - "object_repr": "OP for Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T10:35:10.608Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "17", + "object_repr": "OP for Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 300, "fields": { - "action_time": "2023-04-20T11:23:36.121Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "23", - "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-21", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T11:23:36.121Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "23", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-21", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 301, "fields": { - "action_time": "2023-04-20T11:24:52.818Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "18", - "object_repr": "OP for Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T11:24:52.818Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "18", + "object_repr": "OP for Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 302, "fields": { - "action_time": "2023-04-20T11:25:25.317Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "remarkatbuilding" - ], - "object_id": "19", - "object_repr": "VE for Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T11:25:25.317Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "19", + "object_repr": "VE for Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 303, "fields": { - "action_time": "2023-04-20T12:51:17.017Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "52", - "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-18", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T12:51:17.017Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "52", + "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 304, "fields": { - "action_time": "2023-04-20T12:51:30.328Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "53", - "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-17", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T12:51:30.328Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "53", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-17", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 305, "fields": { - "action_time": "2023-04-20T12:51:49.184Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "54", - "object_repr": "sten@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-19", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T12:51:49.184Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "54", + "object_repr": "sten@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 306, "fields": { - "action_time": "2023-04-20T12:52:00.322Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "studentontour" - ], - "object_id": "55", - "object_repr": "stacey@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-18", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -} + "action_time": "2023-04-20T12:52:00.322Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "55", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + } ] From 154740193a89f8b1571d062ff64af43ca3f1bf75 Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Sat, 6 May 2023 22:26:28 +0200 Subject: [PATCH 03/14] using timezone on remark at buildings --- backend/base/models.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/base/models.py b/backend/base/models.py index fa18268f..f00022ba 100644 --- a/backend/base/models.py +++ b/backend/base/models.py @@ -1,5 +1,6 @@ from datetime import date, datetime +import pytz from django.contrib.auth.base_user import AbstractBaseUser from django.contrib.auth.models import PermissionsMixin from django.core.exceptions import ValidationError @@ -9,6 +10,7 @@ from django.utils.translation import gettext_lazy as _ from phonenumber_field.modelfields import PhoneNumberField +import config.settings as settings from users.managers import UserManager # sys.maxsize throws psycopg2.errors.NumericValueOutOfRange: integer out of range @@ -369,7 +371,8 @@ class RemarkAtBuilding(models.Model): def clean(self): super().clean() if not self.timestamp: - self.timestamp = datetime.now() + tz = pytz.timezone(settings.TIME_ZONE) + self.timestamp = datetime.now(tz) def __str__(self): return f"{self.type} for {self.building}" From e6b3aa5f5bf687ee1cf77af2a1944d68df03a02b Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Mon, 8 May 2023 11:49:17 +0200 Subject: [PATCH 04/14] detail view student on tour analysis --- backend/analysis/serializers.py | 29 ++++++++- backend/analysis/urls.py | 5 +- backend/analysis/views.py | 107 +++++++++++++++++++++++++++++-- backend/student_on_tour/views.py | 5 +- 4 files changed, 136 insertions(+), 10 deletions(-) diff --git a/backend/analysis/serializers.py b/backend/analysis/serializers.py index d6ab199b..463daf6e 100644 --- a/backend/analysis/serializers.py +++ b/backend/analysis/serializers.py @@ -3,7 +3,7 @@ from rest_framework import serializers -from base.models import StudentOnTour +from base.models import StudentOnTour, RemarkAtBuilding def validate_student_on_tours(student_on_tours): @@ -47,3 +47,30 @@ def to_representation(self, student_on_tours: List[StudentOnTour]): # return the list of student data dictionaries return list(student_data.values()) + + +class StudentOnTourAnalysisSerializer(serializers.BaseSerializer): + def to_representation(self, remarks_at_buildings: List[RemarkAtBuilding]): + building_data = {} + + for rab in remarks_at_buildings: + # get the building id for the current RemarkAtBuilding object + building_id = rab.building.id + # add a dict if we haven't seen this building before + if building_id not in building_data: + building_data[building_id] = {'building_id': building_id} + + if rab.type == 'AA': + building_data[building_id]['arrival_time'] = rab.timestamp + elif rab.type == 'VE': + building_data[building_id]['departure_time'] = rab.timestamp + + for building_id, building_info in building_data.items(): + # calculate the duration of the visit + if 'arrival_time' in building_info and 'departure_time' in building_info: + duration = building_info['departure_time'] - building_info['arrival_time'] + # add the duration in seconds to the building info + building_info['duration_in_seconds'] = round(duration.total_seconds()) + + # return the list of building data dictionaries + return list(building_data.values()) diff --git a/backend/analysis/urls.py b/backend/analysis/urls.py index d3c67691..1aa6197e 100644 --- a/backend/analysis/urls.py +++ b/backend/analysis/urls.py @@ -1,7 +1,8 @@ from django.urls import path -from analysis.views import WorkedHoursAnalysis +from analysis.views import WorkedHoursAnalysis, StudentOnTourAnalysis urlpatterns = [ path("worked-hours/", WorkedHoursAnalysis.as_view(), name="worked-hours-analysis"), -] \ No newline at end of file + path("student-on-tour//", StudentOnTourAnalysis.as_view(), name="student-on-tour-analysis"), +] diff --git a/backend/analysis/views.py b/backend/analysis/views.py index 6bc7ed40..bfac4c0c 100644 --- a/backend/analysis/views.py +++ b/backend/analysis/views.py @@ -1,18 +1,63 @@ from django.core.exceptions import BadRequest +from drf_spectacular.types import OpenApiTypes +from drf_spectacular.utils import extend_schema, OpenApiResponse, OpenApiExample +from rest_framework import status from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response from rest_framework.views import APIView -from analysis.serializers import WorkedHoursAnalysisSerializer -from base.models import StudentOnTour +from analysis.serializers import WorkedHoursAnalysisSerializer, StudentOnTourAnalysisSerializer +from base.models import StudentOnTour, RemarkAtBuilding from base.permissions import IsAdmin, IsSuperStudent from util.request_response_util import get_success, get_filter_object, filter_instances, \ - bad_request_custom_error_message + bad_request_custom_error_message, not_found, param_docs class WorkedHoursAnalysis(APIView): permission_classes = [IsAuthenticated, IsAdmin | IsSuperStudent] serializer_class = WorkedHoursAnalysisSerializer + @extend_schema( + description="Get all worked hours for each student for a certain period", + parameters=param_docs( + { + "start-date": ("Filter by start-date", True, OpenApiTypes.DATE), + "end-date": ("Filter by end-date", True, OpenApiTypes.DATE), + "region": ("Filter by region", False, OpenApiTypes.STR), + } + ), + responses={200: OpenApiResponse( + description="All worked hours for each student for a certain period", + examples=[ + OpenApiExample( + "Successful Response", + value=[ + [ + { + "student_id": 6, + "worked_minutes": 112, + "student_on_tour_ids": [ + 1, + 6, + 9, + 56, + 57 + ] + }, + { + "student_id": 7, + "worked_minutes": 70, + "student_on_tour_ids": [ + 2, + 26 + ] + }, + ] + ] + ) + ] + )}, + ) def get(self, request): """ Get all worked hours for each student for a certain period @@ -29,4 +74,58 @@ def get(self, request): except BadRequest as e: return bad_request_custom_error_message(str(e)) - return get_success(self.serializer_class(student_on_tour_instances)) + serializer = self.serializer_class() + serialized_data = serializer.to_representation(student_on_tour_instances) + return Response(serialized_data, status=status.HTTP_200_OK) + + +class StudentOnTourAnalysis(APIView): + permission_classes = [IsAuthenticated, IsAdmin | IsSuperStudent] + serializer_class = StudentOnTourAnalysisSerializer + + @extend_schema( + description="Get a detailed view on a student on tour's timings", + responses={ + 200: OpenApiResponse( + description="A list of buildings and their timings on this student on tour", + examples=[ + OpenApiExample( + "Successful Response", + value=[ + { + "building_id": 11, + "arrival_time": "2023-05-08T08:08:04.693000Z", + "departure_time": "2023-05-08T08:08:11.714000Z", + "duration_in_seconds": 7 + }, + { + "building_id": 12, + "arrival_time": "2023-05-08T08:09:03.561000Z", + "departure_time": "2023-05-08T08:09:12.887000Z", + "duration_in_seconds": 9 + }, + { + "building_id": 13, + "arrival_time": "2023-05-08T08:10:01.986000Z", + "departure_time": "2023-05-08T08:10:10.586000Z", + "duration_in_seconds": 8 + } + ] + ) + ] + ) + } + ) + def get(self, request, student_on_tour_id): + """ + Get a detailed view on a student on tour's timings + """ + student_on_tour_instance = StudentOnTour.objects.get(id=student_on_tour_id) + if not student_on_tour_instance: + return not_found("StudentOnTour") + + remarks_at_buildings = RemarkAtBuilding.objects.filter(student_on_tour_id=student_on_tour_id) + + serializer = self.serializer_class() + serialized_data = serializer.to_representation(remarks_at_buildings) + return Response(serialized_data, status=status.HTTP_200_OK) diff --git a/backend/student_on_tour/views.py b/backend/student_on_tour/views.py index 1bedd832..7882bfbf 100644 --- a/backend/student_on_tour/views.py +++ b/backend/student_on_tour/views.py @@ -78,11 +78,10 @@ def get(self, request, student_on_tour_id): """ Get an individual StudentOnTour with given id """ - stud_tour_instances = StudentOnTour.objects.filter(id=student_on_tour_id) + stud_tour_instance = StudentOnTour.objects.get(id=student_on_tour_id) - if len(stud_tour_instances) != 1: + if not stud_tour_instance: return not_found("StudentOnTour") - stud_tour_instance = stud_tour_instances[0] self.check_object_permissions(request, stud_tour_instance.student) From 5b04ff66bbbf4b7e1fc04ef958d46db3d461ab3c Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Mon, 8 May 2023 13:49:21 +0200 Subject: [PATCH 05/14] filter by region-id instead of region --- backend/analysis/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/analysis/views.py b/backend/analysis/views.py index bfac4c0c..876f53e0 100644 --- a/backend/analysis/views.py +++ b/backend/analysis/views.py @@ -23,7 +23,7 @@ class WorkedHoursAnalysis(APIView): { "start-date": ("Filter by start-date", True, OpenApiTypes.DATE), "end-date": ("Filter by end-date", True, OpenApiTypes.DATE), - "region": ("Filter by region", False, OpenApiTypes.STR), + "region_id": ("Filter by region id", False, OpenApiTypes.INT), } ), responses={200: OpenApiResponse( @@ -66,7 +66,7 @@ def get(self, request): filters = { "start_date": get_filter_object("date__gte", required=True), "end_date": get_filter_object("date__lte", required=True), - "region": get_filter_object("tour__region"), + "region_id": get_filter_object("tour__region__id"), } try: From 4a557bf38d6573cd1cc116b463a40bfe44a5d3e4 Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Mon, 8 May 2023 13:58:26 +0200 Subject: [PATCH 06/14] using built-in django timezone --- backend/base/models.py | 8 +++----- backend/base/signals.py | 11 +++-------- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/backend/base/models.py b/backend/base/models.py index 6f5e6a7d..7c27f08f 100644 --- a/backend/base/models.py +++ b/backend/base/models.py @@ -1,16 +1,15 @@ -from datetime import date, datetime +from datetime import date -import pytz from django.contrib.auth.base_user import AbstractBaseUser from django.contrib.auth.models import PermissionsMixin from django.core.exceptions import ValidationError from django.db import models from django.db.models import UniqueConstraint, Q from django.db.models.functions import Lower +from django.utils import timezone from django.utils.translation import gettext_lazy as _ from phonenumber_field.modelfields import PhoneNumberField -import config.settings as settings from users.managers import UserManager # sys.maxsize throws psycopg2.errors.NumericValueOutOfRange: integer out of range @@ -371,8 +370,7 @@ class RemarkAtBuilding(models.Model): def clean(self): super().clean() if not self.timestamp: - tz = pytz.timezone(settings.TIME_ZONE) - self.timestamp = datetime.now(tz) + self.timestamp = timezone.now() if self.type == "AA" or self.type == "BI" or type == "VE": remark_instances = RemarkAtBuilding.objects.filter( building=self.building, student_on_tour=self.student_on_tour, type=self.type diff --git a/backend/base/signals.py b/backend/base/signals.py index 7d41ada6..1f725b2a 100644 --- a/backend/base/signals.py +++ b/backend/base/signals.py @@ -1,13 +1,10 @@ -from datetime import datetime - -import pytz from asgiref.sync import async_to_sync from channels.layers import get_channel_layer from django.db.models import Max from django.db.models.signals import post_save, pre_save from django.dispatch import receiver +from django.utils import timezone -import config.settings from base.models import StudentOnTour, RemarkAtBuilding @@ -22,8 +19,7 @@ def progress_current_building_index(sender, instance: RemarkAtBuilding, **kwargs # since we only start calculating worked time from the moment we arrive at the first building # we recalculate the start time of the tour if student_on_tour.current_building_index == 1: - tz = pytz.timezone(config.settings.TIME_ZONE) - student_on_tour.started_tour = datetime.now(tz) + student_on_tour.started_tour = timezone.now() student_on_tour.save() @@ -38,8 +34,7 @@ def progress_current_building_index(sender, instance: RemarkAtBuilding, **kwargs ) elif (instance.type == RemarkAtBuilding.VERTREK and student_on_tour.current_building_index == student_on_tour.max_building_index): - tz = pytz.timezone(config.settings.TIME_ZONE) - student_on_tour.completed_tour = datetime.now(tz) + student_on_tour.completed_tour = timezone.now() student_on_tour.save() # Broadcast update to websocket From b57de114fbe393916b6a61906ccb9f79df4bc31b Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Mon, 8 May 2023 14:16:38 +0200 Subject: [PATCH 07/14] adding expected duration in detailed analysis student on tour --- backend/analysis/serializers.py | 13 +++++++++++-- backend/analysis/views.py | 20 ++++++++------------ 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/backend/analysis/serializers.py b/backend/analysis/serializers.py index 463daf6e..acc78064 100644 --- a/backend/analysis/serializers.py +++ b/backend/analysis/serializers.py @@ -1,4 +1,4 @@ -from datetime import timedelta +from datetime import timedelta, datetime from typing import List from rest_framework import serializers @@ -58,7 +58,16 @@ def to_representation(self, remarks_at_buildings: List[RemarkAtBuilding]): building_id = rab.building.id # add a dict if we haven't seen this building before if building_id not in building_data: - building_data[building_id] = {'building_id': building_id} + # Convert the TimeField to a datetime object with today's date + today = datetime.today() + transformed_datetime = datetime.combine(today, rab.building.duration) + expected_duration_in_seconds = transformed_datetime.time().second + ( + transformed_datetime.time().minute * 60) + ( + transformed_datetime.time().hour * 3600) + building_data[building_id] = { + 'building_id': building_id, + 'expected_duration_in_seconds': expected_duration_in_seconds, + } if rab.type == 'AA': building_data[building_id]['arrival_time'] = rab.timestamp diff --git a/backend/analysis/views.py b/backend/analysis/views.py index 876f53e0..8087d0a9 100644 --- a/backend/analysis/views.py +++ b/backend/analysis/views.py @@ -92,24 +92,20 @@ class StudentOnTourAnalysis(APIView): OpenApiExample( "Successful Response", value=[ + { + "building_id": 2, + "expected_duration_in_seconds": 2700, + "arrival_time": "2023-05-08T08:01:52.264000Z", + "departure_time": "2023-05-08T08:07:49.868000Z", + "duration_in_seconds": 358 + }, { "building_id": 11, + "expected_duration_in_seconds": 3600, "arrival_time": "2023-05-08T08:08:04.693000Z", "departure_time": "2023-05-08T08:08:11.714000Z", "duration_in_seconds": 7 }, - { - "building_id": 12, - "arrival_time": "2023-05-08T08:09:03.561000Z", - "departure_time": "2023-05-08T08:09:12.887000Z", - "duration_in_seconds": 9 - }, - { - "building_id": 13, - "arrival_time": "2023-05-08T08:10:01.986000Z", - "departure_time": "2023-05-08T08:10:10.586000Z", - "duration_in_seconds": 8 - } ] ) ] From 147a9f3ac29f7e2a0b8bcd2fe9a350f5a765e13a Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Mon, 8 May 2023 12:25:01 +0000 Subject: [PATCH 08/14] Auto formatted code --- backend/analysis/serializers.py | 38 ++++++++++--------- backend/analysis/views.py | 67 ++++++++++++++------------------- 2 files changed, 49 insertions(+), 56 deletions(-) diff --git a/backend/analysis/serializers.py b/backend/analysis/serializers.py index acc78064..5cbe2e03 100644 --- a/backend/analysis/serializers.py +++ b/backend/analysis/serializers.py @@ -9,7 +9,7 @@ def validate_student_on_tours(student_on_tours): # raise an error if the student_on_tours queryset is not provided if student_on_tours is None: - raise serializers.ValidationError('student_on_tours must be provided to serialize data') + raise serializers.ValidationError("student_on_tours must be provided to serialize data") return student_on_tours @@ -35,14 +35,14 @@ def to_representation(self, student_on_tours: List[StudentOnTour]): # if we've seen this student before, update their worked hours and student_on_tour_ids if student_id in student_data: - student_data[student_id]['worked_minutes'] += worked_minutes - student_data[student_id]['student_on_tour_ids'].append(sot.id) + student_data[student_id]["worked_minutes"] += worked_minutes + student_data[student_id]["student_on_tour_ids"].append(sot.id) # otherwise, add a new entry for this student else: student_data[student_id] = { - 'student_id': student_id, - 'worked_minutes': worked_minutes, - 'student_on_tour_ids': [sot.id], + "student_id": student_id, + "worked_minutes": worked_minutes, + "student_on_tour_ids": [sot.id], } # return the list of student data dictionaries @@ -61,25 +61,27 @@ def to_representation(self, remarks_at_buildings: List[RemarkAtBuilding]): # Convert the TimeField to a datetime object with today's date today = datetime.today() transformed_datetime = datetime.combine(today, rab.building.duration) - expected_duration_in_seconds = transformed_datetime.time().second + ( - transformed_datetime.time().minute * 60) + ( - transformed_datetime.time().hour * 3600) + expected_duration_in_seconds = ( + transformed_datetime.time().second + + (transformed_datetime.time().minute * 60) + + (transformed_datetime.time().hour * 3600) + ) building_data[building_id] = { - 'building_id': building_id, - 'expected_duration_in_seconds': expected_duration_in_seconds, + "building_id": building_id, + "expected_duration_in_seconds": expected_duration_in_seconds, } - if rab.type == 'AA': - building_data[building_id]['arrival_time'] = rab.timestamp - elif rab.type == 'VE': - building_data[building_id]['departure_time'] = rab.timestamp + if rab.type == "AA": + building_data[building_id]["arrival_time"] = rab.timestamp + elif rab.type == "VE": + building_data[building_id]["departure_time"] = rab.timestamp for building_id, building_info in building_data.items(): # calculate the duration of the visit - if 'arrival_time' in building_info and 'departure_time' in building_info: - duration = building_info['departure_time'] - building_info['arrival_time'] + if "arrival_time" in building_info and "departure_time" in building_info: + duration = building_info["departure_time"] - building_info["arrival_time"] # add the duration in seconds to the building info - building_info['duration_in_seconds'] = round(duration.total_seconds()) + building_info["duration_in_seconds"] = round(duration.total_seconds()) # return the list of building data dictionaries return list(building_data.values()) diff --git a/backend/analysis/views.py b/backend/analysis/views.py index 8087d0a9..6fddea72 100644 --- a/backend/analysis/views.py +++ b/backend/analysis/views.py @@ -9,8 +9,14 @@ from analysis.serializers import WorkedHoursAnalysisSerializer, StudentOnTourAnalysisSerializer from base.models import StudentOnTour, RemarkAtBuilding from base.permissions import IsAdmin, IsSuperStudent -from util.request_response_util import get_success, get_filter_object, filter_instances, \ - bad_request_custom_error_message, not_found, param_docs +from util.request_response_util import ( + get_success, + get_filter_object, + filter_instances, + bad_request_custom_error_message, + not_found, + param_docs, +) class WorkedHoursAnalysis(APIView): @@ -26,37 +32,22 @@ class WorkedHoursAnalysis(APIView): "region_id": ("Filter by region id", False, OpenApiTypes.INT), } ), - responses={200: OpenApiResponse( - description="All worked hours for each student for a certain period", - examples=[ - OpenApiExample( - "Successful Response", - value=[ - [ - { - "student_id": 6, - "worked_minutes": 112, - "student_on_tour_ids": [ - 1, - 6, - 9, - 56, - 57 - ] - }, - { - "student_id": 7, - "worked_minutes": 70, - "student_on_tour_ids": [ - 2, - 26 - ] - }, - ] - ] - ) - ] - )}, + responses={ + 200: OpenApiResponse( + description="All worked hours for each student for a certain period", + examples=[ + OpenApiExample( + "Successful Response", + value=[ + [ + {"student_id": 6, "worked_minutes": 112, "student_on_tour_ids": [1, 6, 9, 56, 57]}, + {"student_id": 7, "worked_minutes": 70, "student_on_tour_ids": [2, 26]}, + ] + ], + ) + ], + ) + }, ) def get(self, request): """ @@ -97,20 +88,20 @@ class StudentOnTourAnalysis(APIView): "expected_duration_in_seconds": 2700, "arrival_time": "2023-05-08T08:01:52.264000Z", "departure_time": "2023-05-08T08:07:49.868000Z", - "duration_in_seconds": 358 + "duration_in_seconds": 358, }, { "building_id": 11, "expected_duration_in_seconds": 3600, "arrival_time": "2023-05-08T08:08:04.693000Z", "departure_time": "2023-05-08T08:08:11.714000Z", - "duration_in_seconds": 7 + "duration_in_seconds": 7, }, - ] + ], ) - ] + ], ) - } + }, ) def get(self, request, student_on_tour_id): """ From d982b3af776369708a3076b36f196d37b3657beb Mon Sep 17 00:00:00 2001 From: Sheng Tao Date: Mon, 8 May 2023 23:54:38 +0200 Subject: [PATCH 09/14] edited analysis documentation --- backend/analysis/views.py | 81 ++++++++++++++++++++++++++------------- 1 file changed, 54 insertions(+), 27 deletions(-) diff --git a/backend/analysis/views.py b/backend/analysis/views.py index 6fddea72..ae0c4ca6 100644 --- a/backend/analysis/views.py +++ b/backend/analysis/views.py @@ -1,10 +1,11 @@ from django.core.exceptions import BadRequest from drf_spectacular.types import OpenApiTypes -from drf_spectacular.utils import extend_schema, OpenApiResponse, OpenApiExample +from drf_spectacular.utils import extend_schema, OpenApiResponse, OpenApiExample, inline_serializer from rest_framework import status from rest_framework.permissions import IsAuthenticated from rest_framework.response import Response from rest_framework.views import APIView +from rest_framework import serializers from analysis.serializers import WorkedHoursAnalysisSerializer, StudentOnTourAnalysisSerializer from base.models import StudentOnTour, RemarkAtBuilding @@ -35,18 +36,33 @@ class WorkedHoursAnalysis(APIView): responses={ 200: OpenApiResponse( description="All worked hours for each student for a certain period", + response=inline_serializer( + name='WorkedHoursAnalysisResponse', + fields={ + "student_id": serializers.IntegerField(), + "worked_minutes": serializers.IntegerField(), + "student_on_tour_ids": serializers.ListField(child=serializers.IntegerField()) + } + ), examples=[ OpenApiExample( - "Successful Response", - value=[ - [ - {"student_id": 6, "worked_minutes": 112, "student_on_tour_ids": [1, 6, 9, 56, 57]}, - {"student_id": 7, "worked_minutes": 70, "student_on_tour_ids": [2, 26]}, - ] - ], + "Successful Response 1", + value={ + "student_id": 6, + "worked_minutes": 112, + "student_on_tour_ids": [1, 6, 9, 56, 57] + } + ), + OpenApiExample( + "Successful Response 2", + value={ + "student_id": 7, + "worked_minutes": 70, + "student_on_tour_ids": [2, 26] + } ) ], - ) + ), }, ) def get(self, request): @@ -79,28 +95,39 @@ class StudentOnTourAnalysis(APIView): responses={ 200: OpenApiResponse( description="A list of buildings and their timings on this student on tour", + response=inline_serializer( + name='DetailedStudentOnTourTimings', + fields={ + "building_id": serializers.IntegerField(), + "expected_duration_in_seconds": serializers.IntegerField(), + "arrival_time": serializers.DateTimeField(), + "departure_time": serializers.DateTimeField(), + "duration_in_seconds": serializers.IntegerField(), + } + ), examples=[ OpenApiExample( - "Successful Response", - value=[ - { - "building_id": 2, - "expected_duration_in_seconds": 2700, - "arrival_time": "2023-05-08T08:01:52.264000Z", - "departure_time": "2023-05-08T08:07:49.868000Z", - "duration_in_seconds": 358, - }, - { - "building_id": 11, - "expected_duration_in_seconds": 3600, - "arrival_time": "2023-05-08T08:08:04.693000Z", - "departure_time": "2023-05-08T08:08:11.714000Z", - "duration_in_seconds": 7, - }, - ], + "Successful Response 1", + value={ + "building_id": 2, + "expected_duration_in_seconds": 2700, + "arrival_time": "2023-05-08T08:01:52.264000Z", + "departure_time": "2023-05-08T08:07:49.868000Z", + "duration_in_seconds": 358, + }, + ), + OpenApiExample( + "Successful Response 2", + value={ + "building_id": 11, + "expected_duration_in_seconds": 3600, + "arrival_time": "2023-05-08T08:08:04.693000Z", + "departure_time": "2023-05-08T08:08:11.714000Z", + "duration_in_seconds": 7, + }, ) ], - ) + ), }, ) def get(self, request, student_on_tour_id): From d99852c02a98ddb4e13a972fc96299bca489d943 Mon Sep 17 00:00:00 2001 From: GashinRS Date: Mon, 8 May 2023 21:55:22 +0000 Subject: [PATCH 10/14] Auto formatted code --- backend/analysis/views.py | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/backend/analysis/views.py b/backend/analysis/views.py index ae0c4ca6..e9b4865f 100644 --- a/backend/analysis/views.py +++ b/backend/analysis/views.py @@ -37,30 +37,22 @@ class WorkedHoursAnalysis(APIView): 200: OpenApiResponse( description="All worked hours for each student for a certain period", response=inline_serializer( - name='WorkedHoursAnalysisResponse', + name="WorkedHoursAnalysisResponse", fields={ "student_id": serializers.IntegerField(), "worked_minutes": serializers.IntegerField(), - "student_on_tour_ids": serializers.ListField(child=serializers.IntegerField()) - } + "student_on_tour_ids": serializers.ListField(child=serializers.IntegerField()), + }, ), examples=[ OpenApiExample( "Successful Response 1", - value={ - "student_id": 6, - "worked_minutes": 112, - "student_on_tour_ids": [1, 6, 9, 56, 57] - } + value={"student_id": 6, "worked_minutes": 112, "student_on_tour_ids": [1, 6, 9, 56, 57]}, ), OpenApiExample( "Successful Response 2", - value={ - "student_id": 7, - "worked_minutes": 70, - "student_on_tour_ids": [2, 26] - } - ) + value={"student_id": 7, "worked_minutes": 70, "student_on_tour_ids": [2, 26]}, + ), ], ), }, @@ -96,14 +88,14 @@ class StudentOnTourAnalysis(APIView): 200: OpenApiResponse( description="A list of buildings and their timings on this student on tour", response=inline_serializer( - name='DetailedStudentOnTourTimings', + name="DetailedStudentOnTourTimings", fields={ "building_id": serializers.IntegerField(), "expected_duration_in_seconds": serializers.IntegerField(), "arrival_time": serializers.DateTimeField(), "departure_time": serializers.DateTimeField(), "duration_in_seconds": serializers.IntegerField(), - } + }, ), examples=[ OpenApiExample( @@ -125,7 +117,7 @@ class StudentOnTourAnalysis(APIView): "departure_time": "2023-05-08T08:08:11.714000Z", "duration_in_seconds": 7, }, - ) + ), ], ), }, From 2139650062d4bd3464291e81d1e326a0b0c62f2d Mon Sep 17 00:00:00 2001 From: sevrijss Date: Wed, 10 May 2023 12:02:09 +0200 Subject: [PATCH 11/14] fix faulty permission check --- backend/building_on_tour/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/building_on_tour/views.py b/backend/building_on_tour/views.py index af127bad..05ea3447 100644 --- a/backend/building_on_tour/views.py +++ b/backend/building_on_tour/views.py @@ -58,7 +58,7 @@ def patch(self, request, building_tour_id): if not building_on_tour_instance: return not_found("BuildingOnTour") - self.check_object_permissions(request, building_on_tour_instance) + self.check_object_permissions(request, building_on_tour_instance.tour) data = request_to_dict(request.data) From 8e4a61c3d4f892177defadaa48abc4a9cd54ccf8 Mon Sep 17 00:00:00 2001 From: jonathancasters Date: Wed, 10 May 2023 22:53:58 +0200 Subject: [PATCH 12/14] using filter + first instead of get on StudentOnTour objects. --- backend/student_on_tour/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/student_on_tour/views.py b/backend/student_on_tour/views.py index 7882bfbf..7028fc97 100644 --- a/backend/student_on_tour/views.py +++ b/backend/student_on_tour/views.py @@ -78,7 +78,7 @@ def get(self, request, student_on_tour_id): """ Get an individual StudentOnTour with given id """ - stud_tour_instance = StudentOnTour.objects.get(id=student_on_tour_id) + stud_tour_instance = StudentOnTour.objects.filter(id=student_on_tour_id).first() if not stud_tour_instance: return not_found("StudentOnTour") From e67f7bcac454f93578e90aa9908654d1ba9b0e48 Mon Sep 17 00:00:00 2001 From: simvadnbu Date: Thu, 11 May 2023 07:59:10 +0000 Subject: [PATCH 13/14] Auto formatted code --- .../studentAutocomplete.tsx | 2 +- .../components/calendar/addScheduleEvent.tsx | 36 ++-- .../components/calendar/addTourSchedule.tsx | 34 ++- frontend/components/calendar/copyEvents.tsx | 44 ++-- .../components/calendar/editScheduleEvent.tsx | 42 ++-- .../components/calendar/scheduleCalendar.tsx | 204 ++++++++++-------- .../duplicateGarbageCollectionModal.tsx | 52 +++-- 7 files changed, 212 insertions(+), 202 deletions(-) diff --git a/frontend/components/autocompleteComponents/studentAutocomplete.tsx b/frontend/components/autocompleteComponents/studentAutocomplete.tsx index 4d829f38..68acc410 100644 --- a/frontend/components/autocompleteComponents/studentAutocomplete.tsx +++ b/frontend/components/autocompleteComponents/studentAutocomplete.tsx @@ -14,4 +14,4 @@ const StudentAutocomplete: React.FC = ({ initialId, setObjectId, r ); }; -export default StudentAutocomplete; \ No newline at end of file +export default StudentAutocomplete; diff --git a/frontend/components/calendar/addScheduleEvent.tsx b/frontend/components/calendar/addScheduleEvent.tsx index 95c69cbd..e5445e9b 100644 --- a/frontend/components/calendar/addScheduleEvent.tsx +++ b/frontend/components/calendar/addScheduleEvent.tsx @@ -1,26 +1,24 @@ -import React, {useEffect, useState} from "react"; +import React, { useEffect, useState } from "react"; import Modal from "react-bootstrap/Modal"; import Button from "react-bootstrap/Button"; import TourAutocomplete from "@/components/autocompleteComponents/tourAutocomplete"; import { formatDate } from "@/lib/date"; import ErrorMessageAlert from "@/components/errorMessageAlert"; -import {postStudentOnTour, StudentOnTour} from "@/lib/student-on-tour"; +import { postStudentOnTour, StudentOnTour } from "@/lib/student-on-tour"; import { handleError } from "@/lib/error"; import TourUserAutocomplete from "@/components/autocompleteComponents/tourUsersAutocomplete"; -function AddScheduleEventModal( - { - isOpen, - onClose, - date, - onPost - } : { - isOpen: boolean; - onClose: () => void; - date : Date | null; - onPost: (sot : StudentOnTour) => void - } -) { +function AddScheduleEventModal({ + isOpen, + onClose, + date, + onPost, +}: { + isOpen: boolean; + onClose: () => void; + date: Date | null; + onPost: (sot: StudentOnTour) => void; +}) { const [tourId, setTourId] = useState(-1); const [studentId, setStudentId] = useState(-1); const [selectedDate, setSelectedDate] = useState(null); @@ -40,12 +38,12 @@ function AddScheduleEventModal( } else { if (selectedDate) { postStudentOnTour(tourId, studentId, formatDate(selectedDate)).then( - res => { - const sot : StudentOnTour = res.data; + (res) => { + const sot: StudentOnTour = res.data; onPost(sot); onClose(); }, - err => setErrorMessages(handleError(err)) + (err) => setErrorMessages(handleError(err)) ); } else { setErrorMessages(["Start datum mag niet leeg zijn."]); @@ -53,7 +51,7 @@ function AddScheduleEventModal( } } - function handleStartDateChange(e: { target: { value: string | number | Date } }){ + function handleStartDateChange(e: { target: { value: string | number | Date } }) { setSelectedDate(new Date(e.target.value)); } diff --git a/frontend/components/calendar/addTourSchedule.tsx b/frontend/components/calendar/addTourSchedule.tsx index 5762ef02..91cec3f0 100644 --- a/frontend/components/calendar/addTourSchedule.tsx +++ b/frontend/components/calendar/addTourSchedule.tsx @@ -1,7 +1,7 @@ import React, { useState } from "react"; import Modal from "react-bootstrap/Modal"; import Button from "react-bootstrap/Button"; -import {addDays, startOfWeek} from "date-fns"; +import { addDays, startOfWeek } from "date-fns"; import TourAutocomplete from "@/components/autocompleteComponents/tourAutocomplete"; import { formatDate } from "@/lib/date"; import ErrorMessageAlert from "@/components/errorMessageAlert"; @@ -9,19 +9,17 @@ import { postBulkStudentOnTour, StudentOnTourPost } from "@/lib/student-on-tour" import { handleError } from "@/lib/error"; import TourUserAutocomplete from "@/components/autocompleteComponents/tourUsersAutocomplete"; -function AddTourScheduleModal( - { - isOpen, - onClose, - onPost, - range - } : { - isOpen: boolean - onClose : () => void; - onPost : () => void; - range: {start: Date, end: Date}; - } -) { +function AddTourScheduleModal({ + isOpen, + onClose, + onPost, + range, +}: { + isOpen: boolean; + onClose: () => void; + onPost: () => void; + range: { start: Date; end: Date }; +}) { const [tourId, setTourId] = useState(null); const [studentId, setStudentId] = useState(-1); const [start, setStart] = useState(null); @@ -102,18 +100,18 @@ function AddTourScheduleModal( } } - function handleEventSave (data: { tour: number; student: number; start: Date; end: Date }[]) { + function handleEventSave(data: { tour: number; student: number; start: Date; end: Date }[]) { const post_data: StudentOnTourPost[] = data.map( (event: { tour: number; student: number; start: Date; end: Date }) => { return { tour: event.tour, student: event.student, date: formatDate(event.start) }; } ); postBulkStudentOnTour(post_data).then( - _ => { - onPost() + (_) => { + onPost(); onClose(); }, - err => setErrorMessages(handleError(err)) + (err) => setErrorMessages(handleError(err)) ); } diff --git a/frontend/components/calendar/copyEvents.tsx b/frontend/components/calendar/copyEvents.tsx index be83419f..ec2ea673 100644 --- a/frontend/components/calendar/copyEvents.tsx +++ b/frontend/components/calendar/copyEvents.tsx @@ -1,26 +1,24 @@ import React, { useState } from "react"; import Modal from "react-bootstrap/Modal"; import Button from "react-bootstrap/Button"; -import {addDays, addWeeks, differenceInDays, isSameWeek, startOfWeek} from "date-fns"; +import { addDays, addWeeks, differenceInDays, isSameWeek, startOfWeek } from "date-fns"; import ErrorMessageAlert from "@/components/errorMessageAlert"; import { postBulkStudentOnTour, StudentOnTourPost } from "@/lib/student-on-tour"; import { formatDate } from "@/lib/date"; import { handleError } from "@/lib/error"; -import {ScheduleEvent} from "@/types"; +import { ScheduleEvent } from "@/types"; -function CopyScheduleEventsModal( - { - range, - events, - isOpen, - onClose - } : { - range: {start: Date, end: Date}; - events: ScheduleEvent[]; - isOpen: boolean; - onClose: () => void; - } -) { +function CopyScheduleEventsModal({ + range, + events, + isOpen, + onClose, +}: { + range: { start: Date; end: Date }; + events: ScheduleEvent[]; + isOpen: boolean; + onClose: () => void; +}) { const [copyTo, setCopyTo] = useState(startOfWeek(addWeeks(range.start, 1))); const [errorMessages, setErrorMessages] = useState([]); @@ -32,22 +30,22 @@ function CopyScheduleEventsModal( } const start = startOfWeek(copyTo); - const diff : number = differenceInDays(start, displayedSunday); + const diff: number = differenceInDays(start, displayedSunday); let newEvents: StudentOnTourPost[] = []; for (let e of events) { - newEvents.push({ - tour: e.tour.id, - student: e.student.id, - date: formatDate(addDays(e.start, diff)), - }); + newEvents.push({ + tour: e.tour.id, + student: e.student.id, + date: formatDate(addDays(e.start, diff)), + }); } postBulkStudentOnTour(newEvents).then( (_) => { onClose(); }, - err => setErrorMessages(handleError(err)) + (err) => setErrorMessages(handleError(err)) ); }; @@ -70,7 +68,7 @@ function CopyScheduleEventsModal( type="date" className="form-control" value={formatDate(copyTo)} - onChange={e => { + onChange={(e) => { setCopyTo(startOfWeek(new Date(e.target.value))); }} /> diff --git a/frontend/components/calendar/editScheduleEvent.tsx b/frontend/components/calendar/editScheduleEvent.tsx index d24d7678..2bc43ab7 100644 --- a/frontend/components/calendar/editScheduleEvent.tsx +++ b/frontend/components/calendar/editScheduleEvent.tsx @@ -1,4 +1,4 @@ -import React, {useEffect, useState} from "react"; +import React, { useEffect, useState } from "react"; import Modal from "react-bootstrap/Modal"; import Button from "react-bootstrap/Button"; import TourAutocomplete from "@/components/autocompleteComponents/tourAutocomplete"; @@ -7,25 +7,23 @@ import ErrorMessageAlert from "@/components/errorMessageAlert"; import { patchStudentOnTour } from "@/lib/student-on-tour"; import { formatDate } from "@/lib/date"; import TourUserAutocomplete from "@/components/autocompleteComponents/tourUsersAutocomplete"; -import {ScheduleEvent} from "@/types"; +import { ScheduleEvent } from "@/types"; -function EditScheduleEventModal( - { - event, - isOpen, - onClose, - onDelete, - onDeleteTour, - onEdit - } : { - event : ScheduleEvent | null; - isOpen : boolean; - onClose : () => void; - onDelete: (e : ScheduleEvent) => void; - onDeleteTour: (e : ScheduleEvent) => void; - onEdit: (id: number, tour: number, student: number, date: Date) => void - } -) { +function EditScheduleEventModal({ + event, + isOpen, + onClose, + onDelete, + onDeleteTour, + onEdit, +}: { + event: ScheduleEvent | null; + isOpen: boolean; + onClose: () => void; + onDelete: (e: ScheduleEvent) => void; + onDeleteTour: (e: ScheduleEvent) => void; + onEdit: (id: number, tour: number, student: number, date: Date) => void; +}) { const [tourId, setTourId] = useState(null); const [studentId, setStudentId] = useState(null); const [date, setDate] = useState(new Date()); @@ -44,7 +42,7 @@ function EditScheduleEventModal( }, [event]); const handleSave = () => { - if (! event || ! tourId || ! studentId) { + if (!event || !tourId || !studentId) { return; } patchStudentOnTour(event.id, tourId, studentId, formatDate(date)).then( @@ -58,7 +56,7 @@ function EditScheduleEventModal( }; const handleDelete = () => { - if (! event) { + if (!event) { return; } onDelete(event); @@ -66,7 +64,7 @@ function EditScheduleEventModal( }; const handleTourDelete = () => { - if (! event) { + if (!event) { return; } onDeleteTour(event); diff --git a/frontend/components/calendar/scheduleCalendar.tsx b/frontend/components/calendar/scheduleCalendar.tsx index 63db1be1..d84b8125 100644 --- a/frontend/components/calendar/scheduleCalendar.tsx +++ b/frontend/components/calendar/scheduleCalendar.tsx @@ -1,12 +1,12 @@ -import React, {useEffect, useState} from "react"; -import {Calendar, dateFnsLocalizer, Event} from "react-big-calendar"; -import withDragAndDrop, {EventInteractionArgs} from "react-big-calendar/lib/addons/dragAndDrop"; +import React, { useEffect, useState } from "react"; +import { Calendar, dateFnsLocalizer, Event } from "react-big-calendar"; +import withDragAndDrop, { EventInteractionArgs } from "react-big-calendar/lib/addons/dragAndDrop"; import format from "date-fns/format"; import parse from "date-fns/parse"; import startOfWeek from "date-fns/startOfWeek"; import getDay from "date-fns/getDay"; import nlBE from "date-fns/locale/nl-BE"; -import {messages} from "@/locales/localizerCalendar"; +import { messages } from "@/locales/localizerCalendar"; import { deleteBulkStudentOnTour, deleteStudentOnTour, @@ -22,28 +22,20 @@ import "react-big-calendar/lib/css/react-big-calendar.css"; import EditScheduleEventModal from "@/components/calendar/editScheduleEvent"; import CustomDisplay from "@/components/calendar/customEvent"; import AddScheduleEventModal from "@/components/calendar/addScheduleEvent"; -import {Tour} from "@/lib/tour"; -import {User} from "@/lib/user"; -import {addDays, endOfWeek} from "date-fns"; -import {formatDate} from "@/lib/date"; -import {handleError} from "@/lib/error"; +import { Tour } from "@/lib/tour"; +import { User } from "@/lib/user"; +import { addDays, endOfWeek } from "date-fns"; +import { formatDate } from "@/lib/date"; +import { handleError } from "@/lib/error"; import CopyScheduleEventsModal from "@/components/calendar/copyEvents"; -import {colors} from "@/components/calendar/colors"; +import { colors } from "@/components/calendar/colors"; import styles from "./calendar.module.css"; -import {ScheduleEvent} from "@/types"; +import { ScheduleEvent } from "@/types"; import ErrorMessageAlert from "@/components/errorMessageAlert"; import SuccessMessageAlert from "@/components/successMessageAlert"; import AddTourScheduleModal from "@/components/calendar/addTourSchedule"; -function ScheduleCalendar( - { - tourUsers, - tours - }: { - tourUsers: User[]; - tours: Tour[]; - } -) { +function ScheduleCalendar({ tourUsers, tours }: { tourUsers: User[]; tours: Tour[] }) { const [popupIsOpenEdit, setPopupIsOpenEdit] = useState(false); const [popupIsOpenAdd, setPopupIsOpenAdd] = useState(false); const [popupIsOpenAddTour, setPopupIsOpenAddTour] = useState(false); @@ -62,51 +54,60 @@ function ScheduleCalendar( useEffect(() => { if (tourUsers.length > 0 && tours.length > 0) { assignColors(tours); - getFromRange({start: startOfWeek(new Date()), end: endOfWeek(new Date())}); + getFromRange({ start: startOfWeek(new Date()), end: endOfWeek(new Date()) }); } }, [tourUsers, tours]); function getFromRange(range: Date[] | { start: Date; end: Date }) { let startDate: Date = Array.isArray(range) ? range[0] : range.start; let endDate: Date | null = Array.isArray(range) ? range[range.length - 1] : range.end; - setRange({start: startDate, end: endDate}); - onEventsLoad({start_date: startDate, end_date: endDate}); + setRange({ start: startDate, end: endDate }); + onEventsLoad({ start_date: startDate, end_date: endDate }); } function postEvents(start: Date, end: Date, data: StudentOnTourPost[]) { postBulkStudentOnTour(data).then( - _ => getFromRange({start: range.start, end: range.end}), - err => setErrorMessages(handleError(err)) + (_) => getFromRange({ start: range.start, end: range.end }), + (err) => setErrorMessages(handleError(err)) ); } - function onEventsLoad({start_date, end_date}: { start_date: Date; end_date: Date }) { - getAllStudentOnTourFromDate({startDate: new Date(start_date), endDate: new Date(end_date)}).then( - res => { + function onEventsLoad({ start_date, end_date }: { start_date: Date; end_date: Date }) { + getAllStudentOnTourFromDate({ startDate: new Date(start_date), endDate: new Date(end_date) }).then( + (res) => { const list: StudentOnTour[] = res.data; - setEvents(list.filter(s => { - return tourUsers.find((u: User) => u.id === s.student) && tours.find((t: Tour) => t.id === s.tour); - }).map(sot => { - const startDate = new Date(sot.date); - startDate.setHours(0); - const endDate = addDays(new Date(sot.date), 1); - endDate.setHours(0); - const student: User = tourUsers.find((u: User) => u.id === sot.student)!; - const tour: Tour = tours.find((t: Tour) => t.id === sot.tour)!; - return { - id: sot.id, - tour: tour, - student: student, - start: startDate, - end: endDate, - } - }).sort(compareScheduleEvents)); - }, err => setErrorMessages(handleError(err)) + setEvents( + list + .filter((s) => { + return ( + tourUsers.find((u: User) => u.id === s.student) && + tours.find((t: Tour) => t.id === s.tour) + ); + }) + .map((sot) => { + const startDate = new Date(sot.date); + startDate.setHours(0); + const endDate = addDays(new Date(sot.date), 1); + endDate.setHours(0); + const student: User = tourUsers.find((u: User) => u.id === sot.student)!; + const tour: Tour = tours.find((t: Tour) => t.id === sot.tour)!; + return { + id: sot.id, + tour: tour, + student: student, + start: startDate, + end: endDate, + }; + }) + .sort(compareScheduleEvents) + ); + }, + (err) => setErrorMessages(handleError(err)) ); } function onEventsCopy(start: Date, end: Date) { - getFromRange({start, end}) + getFromRange({ start, end }); setSuccessMessages([`Gekopieerd naar week van ${formatDate(start)}`]); } @@ -123,24 +124,26 @@ function ScheduleCalendar( const currentStudent: User | undefined = tourUsers.find((s: User) => s.id === student); if (currentTour && currentStudent) { setEvents((currentEvents) => { - return currentEvents.map((currentEvent) => { - if (currentEvent.id === id) { - return { - ...currentEvent, - tour: currentTour, - student: currentStudent, - start: date, - end: end, - }; - } - return currentEvent; - }).sort(compareScheduleEvents); + return currentEvents + .map((currentEvent) => { + if (currentEvent.id === id) { + return { + ...currentEvent, + tour: currentTour, + student: currentStudent, + start: date, + end: end, + }; + } + return currentEvent; + }) + .sort(compareScheduleEvents); }); } } function onEventResize(args: EventInteractionArgs): void { - const {event, start, end} = args; + const { event, start, end } = args; let resizedEvents: StudentOnTourPost[] = []; let currentDate = new Date(start); currentDate.setHours(0); @@ -161,20 +164,24 @@ function ScheduleCalendar( postEvents(range.start, range.end, resizedEvents); } - function onEventDragAndDrop(args: EventInteractionArgs): void { - const {event, start} = args; + const { event, start } = args; const scheduleEvent: ScheduleEvent = event as ScheduleEvent; - patchStudentOnTour(scheduleEvent.id, scheduleEvent.tour.id, scheduleEvent.student.id, formatDate(new Date(start))).then( - res => { + patchStudentOnTour( + scheduleEvent.id, + scheduleEvent.tour.id, + scheduleEvent.student.id, + formatDate(new Date(start)) + ).then( + (res) => { onEventEdit(scheduleEvent.id, scheduleEvent.tour.id, scheduleEvent.student.id, new Date(res.data.date)); }, - err => setErrorMessages(handleError(err)) + (err) => setErrorMessages(handleError(err)) ); } function addSingleEvent(sot: StudentOnTour) { - setEvents(prevState => { + setEvents((prevState) => { const tour: Tour | undefined = tours.find((t: Tour) => sot.tour === t.id); const student: User | undefined = tourUsers.find((s: User) => sot.student === s.id); if (!tour || !student) { @@ -184,13 +191,16 @@ function ScheduleCalendar( startDate.setHours(0); const endDate = addDays(startDate, 1); endDate.setHours(0); - return [...prevState, { - id: sot.id, - tour: tour, - student: student, - start: startDate, - end: endDate, - }].sort(compareScheduleEvents); + return [ + ...prevState, + { + id: sot.id, + tour: tour, + student: student, + start: startDate, + end: endDate, + }, + ].sort(compareScheduleEvents); }); } @@ -212,14 +222,16 @@ function ScheduleCalendar( function onEventDelete(event: ScheduleEvent) { deleteStudentOnTour(event.id).then( - _ => { + (_) => { setEvents((currentEvents) => { - return currentEvents.filter((currentEvent) => { - return currentEvent !== event; - }).sort(compareScheduleEvents); + return currentEvents + .filter((currentEvent) => { + return currentEvent !== event; + }) + .sort(compareScheduleEvents); }); }, - err => setErrorMessages(handleError(err)) + (err) => setErrorMessages(handleError(err)) ); } @@ -232,18 +244,18 @@ function ScheduleCalendar( return event.id; }) ).then( - _ => { + (_) => { const updatedEvents: ScheduleEvent[] = events.filter((e) => !removedTours.includes(e)); setEvents(updatedEvents); }, - err => setErrorMessages(handleError(err)) + (err) => setErrorMessages(handleError(err)) ); } function assignColors(tours: Tour[]) { const col: { [key: number]: string } = {}; tours.forEach((t: Tour, index: number) => { - const cIndex = index % colors.length + const cIndex = index % colors.length; col[t.id] = colors[cIndex]; }); setTourColors(col); @@ -268,8 +280,8 @@ function ScheduleCalendar( > Kopieer planning - - + + { const backgroundColor = tourColors[event.tour.id]; - return {style: {backgroundColor, color: "white"}}; + return { style: { backgroundColor, color: "white" } }; }} localizer={localizer} drilldownView={null} @@ -314,13 +326,21 @@ function ScheduleCalendar( onEdit={onEventEdit} /> )} - getFromRange({start: range.start, end: range.end})} - onClose={() => setPopupIsOpenAddTour(false)} range={range}/> - { - setSelectedDate(null); - setPopupIsOpenAdd(false); - }}/> + getFromRange({ start: range.start, end: range.end })} + onClose={() => setPopupIsOpenAddTour(false)} + range={range} + /> + { + setSelectedDate(null); + setPopupIsOpenAdd(false); + }} + /> void; buildings: BuildingInterface[]; }) { - const {t} = useTranslation(); + const { t } = useTranslation(); const [errorMessages, setErrorMessages] = useState([]); const [startDate, setStartDate] = useState(""); const [endDate, setEndDate] = useState(""); @@ -59,7 +59,7 @@ export default function DuplicateGarbageCollectionModal({ Dupliceer vuilophaling schema voor geselecteerde gebouwen - +
@@ -69,11 +69,11 @@ export default function DuplicateGarbageCollectionModal({ type="date" className="form-control" value={startDate} - onChange={(event) => setStartDate( - formatDate( - startOfWeek(new Date(event.target.value), {weekStartsOn: 1}) + onChange={(event) => + setStartDate( + formatDate(startOfWeek(new Date(event.target.value), { weekStartsOn: 1 })) ) - )} + } />
@@ -82,11 +82,9 @@ export default function DuplicateGarbageCollectionModal({ type="date" className="form-control" value={endDate} - onChange={(event) => setEndDate( - formatDate( - endOfWeek(new Date(event.target.value), {weekStartsOn: 1}) - ) - )} + onChange={(event) => + setEndDate(formatDate(endOfWeek(new Date(event.target.value), { weekStartsOn: 1 }))) + } />
@@ -96,11 +94,11 @@ export default function DuplicateGarbageCollectionModal({ type="date" className="form-control" value={copyToDate} - onChange={(event) => setCopyToDate( - formatDate( - startOfWeek(new Date(event.target.value), {weekStartsOn: 1}) + onChange={(event) => + setCopyToDate( + formatDate(startOfWeek(new Date(event.target.value), { weekStartsOn: 1 })) ) - )} + } />
From b5d1c15b7a9434bbb0e7bdde9881153333b338f3 Mon Sep 17 00:00:00 2001 From: Simon Van den Bussche <77171450+simvadnbu@users.noreply.github.com> Date: Thu, 11 May 2023 10:11:59 +0200 Subject: [PATCH 14/14] Update datadump.json fix datadump --- backend/datadump.json | 10219 +++++++++++++++++++++++----------------- 1 file changed, 5895 insertions(+), 4324 deletions(-) diff --git a/backend/datadump.json b/backend/datadump.json index 6b49b2cb..b3b0ab9f 100644 --- a/backend/datadump.json +++ b/backend/datadump.json @@ -1,5589 +1,7160 @@ [ -{ + { "model": "sessions.session", "pk": "89r833bgtx3n9noaftc1quiw22bx2u0y", "fields": { - "session_data": ".eJxVjMEOgyAQRP-Fc2NYFpD2Vn-ELMsaTQ0mFU5N_73aeGiP82bmvVSkVqfYNnnGOaubMkZdfmEifkg5GlqWA3fEvLZSu-_mrLfuvicpdWaq81qG8_Wnmmibdk-S5IE0IztvHYI4CkDi0YaxR_BXKzKKlpS98yaYHEC73ENCZLYC6v0B45c8bA:1ppPnL:tLAddhOwZCbXQ6r2-_pI3czcckkQ1JvD0fLJTbUqaaU", - "expire_date": "2023-05-04T08:37:35.681Z" + "session_data": ".eJxVjMEOgyAQRP-Fc2NYFpD2Vn-ELMsaTQ0mFU5N_73aeGiP82bmvVSkVqfYNnnGOaubMkZdfmEifkg5GlqWA3fEvLZSu-_mrLfuvicpdWaq81qG8_Wnmmibdk-S5IE0IztvHYI4CkDi0YaxR_BXKzKKlpS98yaYHEC73ENCZLYC6v0B45c8bA:1ppPnL:tLAddhOwZCbXQ6r2-_pI3czcckkQ1JvD0fLJTbUqaaU", + "expire_date": "2023-05-04T08:37:35.681Z" } -}, -{ + }, + { "model": "sessions.session", "pk": "vi0mcac2q2xamblpgc684mc9e7pa3taw", "fields": { - "session_data": ".eJxVjEEOwiAURO_C2hCk8AF39iLk84FAbGgidGW8u63pQpfz3sy8mMdtFL_19PQ1shtTil1-YUB6pHYYXJYDcyRatzb4t3Pqzu97Sm1UwlHXNp-rv6uCvew_FoECSCVcSAooAiXtUpbZSpODimYCAqcdOm13JY0Vxlw1iCDiFKNi7w_vSDxt:1piaoS:yGQZ1-RBbvBElxeXrdlH2KidLSh-zOVQfL1IfzgOppc", - "expire_date": "2023-04-15T12:58:32.537Z" + "session_data": ".eJxVjEEOwiAURO_C2hCk8AF39iLk84FAbGgidGW8u63pQpfz3sy8mMdtFL_19PQ1shtTil1-YUB6pHYYXJYDcyRatzb4t3Pqzu97Sm1UwlHXNp-rv6uCvew_FoECSCVcSAooAiXtUpbZSpODimYCAqcdOm13JY0Vxlw1iCDiFKNi7w_vSDxt:1piaoS:yGQZ1-RBbvBElxeXrdlH2KidLSh-zOVQfL1IfzgOppc", + "expire_date": "2023-04-15T12:58:32.537Z" } -}, -{ + }, + { "model": "sites.site", - "pk": 1, "fields": { - "domain": "localhost", - "name": "localhost" + "domain": "localhost", + "name": "localhost" } -}, -{ + }, + { "model": "sites.site", - "pk": 2, "fields": { - "domain": "sel2-4.ugent.be", - "name": "sel2-4.ugent.be" + "domain": "sel2-4.ugent.be", + "name": "sel2-4.ugent.be" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 1, "fields": { - "token": 34, - "blacklisted_at": "2023-04-19T20:30:21.420Z" + "token": 34, + "blacklisted_at": "2023-04-19T20:30:21.420Z" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 2, "fields": { - "token": 36, - "blacklisted_at": "2023-04-19T22:12:35.202Z" + "token": 36, + "blacklisted_at": "2023-04-19T22:12:35.202Z" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 3, "fields": { - "token": 37, - "blacklisted_at": "2023-04-20T08:01:20.146Z" + "token": 37, + "blacklisted_at": "2023-04-20T08:01:20.146Z" } -}, -{ + }, + { "model": "token_blacklist.blacklistedtoken", "pk": 4, "fields": { - "token": 39, - "blacklisted_at": "2023-04-20T11:13:48.490Z" + "token": 39, + "blacklisted_at": "2023-04-20T11:13:48.490Z" } -}, -{ + }, + { "model": "base.region", "pk": 1, "fields": { - "region": "Gent" + "region": "Gent" } -}, -{ + }, + { "model": "base.region", "pk": 2, "fields": { - "region": "Antwerpen" + "region": "Antwerpen" } -}, -{ + }, + { "model": "base.region", "pk": 3, "fields": { - "region": "Brugge" + "region": "Brugge" } -}, -{ + }, + { "model": "base.role", "pk": 1, "fields": { - "name": "Default", - "rank": 2147483647, - "description": "The default role" + "name": "Default", + "rank": 2147483647, + "description": "The default role" } -}, -{ + }, + { "model": "base.role", "pk": 2, "fields": { - "name": "Admin", - "rank": 1, - "description": "The admin role" + "name": "Admin", + "rank": 1, + "description": "The admin role" } -}, -{ + }, + { "model": "base.role", "pk": 3, "fields": { - "name": "Superstudent", - "rank": 2, - "description": "The superstudent role" + "name": "Superstudent", + "rank": 2, + "description": "The superstudent role" } -}, -{ + }, + { "model": "base.role", "pk": 4, "fields": { - "name": "Student", - "rank": 3, - "description": "The student role" + "name": "Student", + "rank": 3, + "description": "The student role" } -}, -{ + }, + { "model": "base.role", "pk": 5, "fields": { - "name": "Syndic", - "rank": 3, - "description": "The syndic role" + "name": "Syndic", + "rank": 3, + "description": "The syndic role" } -}, -{ + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$h8HANFi7B7Tdf2C83kS23G$2YBNlmr2Frrf0O5ZAK8oreR3NpRtahdoAK/d/r6pG1A=", - "last_login": "2023-03-21T21:17:46.173Z", - "is_superuser": false, - "email": "sylvie@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylvie", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$h8HANFi7B7Tdf2C83kS23G$2YBNlmr2Frrf0O5ZAK8oreR3NpRtahdoAK/d/r6pG1A=", + "last_login": "2023-03-21T21:17:46.173Z", + "is_superuser": false, + "email": "sylvie@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylvie", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$eMbH3Z8YUsRPQJVlB3cU9I$8/qb8N6xGzvWXtwsq+opnlZgBkRfg28odZ0n5LkS0sk=", - "last_login": "2023-03-08T14:26:37Z", - "is_superuser": false, - "email": "sydney@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sydney", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$eMbH3Z8YUsRPQJVlB3cU9I$8/qb8N6xGzvWXtwsq+opnlZgBkRfg28odZ0n5LkS0sk=", + "last_login": "2023-03-08T14:26:37Z", + "is_superuser": false, + "email": "sydney@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sydney", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$NbeM1Nb03rlBDewUpjaoRK$MuGG2gNblnAslUP45cNlDEEzHbdSxt/AUhKbVysdp6s=", - "last_login": "2023-03-08T14:27:09Z", - "is_superuser": false, - "email": "sylvano@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylvano", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$NbeM1Nb03rlBDewUpjaoRK$MuGG2gNblnAslUP45cNlDEEzHbdSxt/AUhKbVysdp6s=", + "last_login": "2023-03-08T14:27:09Z", + "is_superuser": false, + "email": "sylvano@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylvano", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$yf4lja2lMRou1Nm8nfkS24$tgMzzynF9OP+MN2XpDL4B/eTQKdtzyVKK7TD5lEz7xw=", - "last_login": "2023-03-08T14:28:16Z", - "is_superuser": false, - "email": "sylke@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylke", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$yf4lja2lMRou1Nm8nfkS24$tgMzzynF9OP+MN2XpDL4B/eTQKdtzyVKK7TD5lEz7xw=", + "last_login": "2023-03-08T14:28:16Z", + "is_superuser": false, + "email": "sylke@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylke", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$600000$P8azaB6ftFYdCB1sjJWt1c$NSF9FnmSjZpFerYGmVxA9+XQTD55iV5t8efdgZ47HXU=", - "last_login": "2023-03-08T14:28:42Z", - "is_superuser": false, - "email": "sylvian@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sylvian", - "last_name": "test", - "phone_number": "+32485710347", - "role": 5, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$600000$P8azaB6ftFYdCB1sjJWt1c$NSF9FnmSjZpFerYGmVxA9+XQTD55iV5t8efdgZ47HXU=", + "last_login": "2023-03-08T14:28:42Z", + "is_superuser": false, + "email": "sylvian@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sylvian", + "last_name": "test", + "phone_number": "+32485710347", + "role": 5, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$BNwYbvuhtJYoNwocNIiuFR$KIkBwvVwddo4vhz/J5Z7o87T/vPiKFyC+oFM+ury9Hg=", - "last_login": "2023-03-08T14:30:24Z", - "is_superuser": false, - "email": "stijn@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stijn", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$BNwYbvuhtJYoNwocNIiuFR$KIkBwvVwddo4vhz/J5Z7o87T/vPiKFyC+oFM+ury9Hg=", + "last_login": "2023-03-08T14:30:24Z", + "is_superuser": false, + "email": "stijn@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stijn", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$byXw7YCysrkmOkrGlqwj9e$6zDq0gQc/8chk1Thb4hs70x8+HBkGU1HKSSEqD18V1o=", - "last_login": "2023-03-08T14:30:41Z", - "is_superuser": false, - "email": "stef@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stef", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$byXw7YCysrkmOkrGlqwj9e$6zDq0gQc/8chk1Thb4hs70x8+HBkGU1HKSSEqD18V1o=", + "last_login": "2023-03-08T14:30:41Z", + "is_superuser": false, + "email": "stef@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stef", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$dzGAbxGvpIktcFY3Na3gzN$hZvjMM+jtENVtw6B0kW37txlgvR7zB36BuUokGWpZmw=", - "last_login": "2023-03-08T14:31:00Z", - "is_superuser": false, - "email": "stephan@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stephan", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$dzGAbxGvpIktcFY3Na3gzN$hZvjMM+jtENVtw6B0kW37txlgvR7zB36BuUokGWpZmw=", + "last_login": "2023-03-08T14:31:00Z", + "is_superuser": false, + "email": "stephan@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stephan", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$GywaqnFDEVEkOxqcmqFbcX$EnYKANh1YlKRf+hSB/P3ptmSpgmsf+JyUPaSNSjxyoQ=", - "last_login": "2023-03-08T14:31:13Z", - "is_superuser": false, - "email": "steven@test.com", - "is_staff": false, - "is_active": true, - "first_name": "steven", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$GywaqnFDEVEkOxqcmqFbcX$EnYKANh1YlKRf+hSB/P3ptmSpgmsf+JyUPaSNSjxyoQ=", + "last_login": "2023-03-08T14:31:13Z", + "is_superuser": false, + "email": "steven@test.com", + "is_staff": false, + "is_active": true, + "first_name": "steven", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$AMNu9ujtWd16u5z1zaW6JJ$EqE1eiUMjAyHL93NBfWyRJME2x+dSfVOGozVqgGtf0A=", - "last_login": "2023-03-08T14:32:10Z", - "is_superuser": false, - "email": "sten@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sten", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$AMNu9ujtWd16u5z1zaW6JJ$EqE1eiUMjAyHL93NBfWyRJME2x+dSfVOGozVqgGtf0A=", + "last_login": "2023-03-08T14:32:10Z", + "is_superuser": false, + "email": "sten@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sten", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$0zOt0mhGugAVg3lbplpMQW$enmZS+ykYIMqBpsxjDuelcicTb8VuQozJD+E5CBLQwY=", - "last_login": "2023-03-08T14:32:37Z", - "is_superuser": false, - "email": "sterre@test.com", - "is_staff": false, - "is_active": true, - "first_name": "sterre", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$0zOt0mhGugAVg3lbplpMQW$enmZS+ykYIMqBpsxjDuelcicTb8VuQozJD+E5CBLQwY=", + "last_login": "2023-03-08T14:32:37Z", + "is_superuser": false, + "email": "sterre@test.com", + "is_staff": false, + "is_active": true, + "first_name": "sterre", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$txsz57xK6zuxoRCqPvbflu$cbZ15oMhfWceRxNzrU2qr+mZQOmusdwPh3uX/60JO94=", - "last_login": "2023-03-08T14:32:47Z", - "is_superuser": false, - "email": "stella@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stella", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$txsz57xK6zuxoRCqPvbflu$cbZ15oMhfWceRxNzrU2qr+mZQOmusdwPh3uX/60JO94=", + "last_login": "2023-03-08T14:32:47Z", + "is_superuser": false, + "email": "stella@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stella", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$HhlA3K1bMVF5qy0NIxvKBC$ic0OKcT5SnhO60BSBnCBGz1Ges13amEuBz1H9MTl+oo=", - "last_login": "2023-03-08T14:32:59Z", - "is_superuser": false, - "email": "stefanie@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stefanie", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$HhlA3K1bMVF5qy0NIxvKBC$ic0OKcT5SnhO60BSBnCBGz1Ges13amEuBz1H9MTl+oo=", + "last_login": "2023-03-08T14:32:59Z", + "is_superuser": false, + "email": "stefanie@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stefanie", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$4u9eKSAcywwYYPeFZVv91O$eE7l84LghCmXq7YJxJ0Uem2r+rC7gb3cUK2GBXF0XMo=", - "last_login": "2023-03-08T14:33:08Z", - "is_superuser": false, - "email": "stacey@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stacey", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$4u9eKSAcywwYYPeFZVv91O$eE7l84LghCmXq7YJxJ0Uem2r+rC7gb3cUK2GBXF0XMo=", + "last_login": "2023-03-08T14:33:08Z", + "is_superuser": false, + "email": "stacey@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stacey", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$0eKqjM6Bc3DYFdtR86oQ2y$MhFYJgQGphSo0g4uPKjYBqWRtuudF+RV45T0LltdG5o=", - "last_login": "2023-03-08T14:33:36Z", - "is_superuser": false, - "email": "stanford@test.com", - "is_staff": false, - "is_active": true, - "first_name": "stanford", - "last_name": "test", - "phone_number": "+32485710347", - "role": 4, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$0eKqjM6Bc3DYFdtR86oQ2y$MhFYJgQGphSo0g4uPKjYBqWRtuudF+RV45T0LltdG5o=", + "last_login": "2023-03-08T14:33:36Z", + "is_superuser": false, + "email": "stanford@test.com", + "is_staff": false, + "is_active": true, + "first_name": "stanford", + "last_name": "test", + "phone_number": "+32485710347", + "role": 4, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$A3PF4gDTzyhxBo0LhwktVK$csGfWiwbiPLWv+XbRlrSRB34wjfVJDZEQErhoyoZv1o=", - "last_login": "2023-03-21T22:16:40.718Z", - "is_superuser": true, - "email": "adam@test.com", - "is_staff": true, - "is_active": true, - "first_name": "adam", - "last_name": "test", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$A3PF4gDTzyhxBo0LhwktVK$csGfWiwbiPLWv+XbRlrSRB34wjfVJDZEQErhoyoZv1o=", + "last_login": "2023-03-21T22:16:40.718Z", + "is_superuser": true, + "email": "adam@test.com", + "is_staff": true, + "is_active": true, + "first_name": "adam", + "last_name": "test", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$feAcIOeHIeYScG387l2rEf$kGrH6DpsVQAzIYT5GTpwSoSF16fuosXbSb9K009etjg=", - "last_login": "2023-03-08T14:34:39Z", - "is_superuser": true, - "email": "adriana@test.com", - "is_staff": true, - "is_active": true, - "first_name": "adriana", - "last_name": "test", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$feAcIOeHIeYScG387l2rEf$kGrH6DpsVQAzIYT5GTpwSoSF16fuosXbSb9K009etjg=", + "last_login": "2023-03-08T14:34:39Z", + "is_superuser": true, + "email": "adriana@test.com", + "is_staff": true, + "is_active": true, + "first_name": "adriana", + "last_name": "test", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$vhogqyr2pJaL6WBPxxtzi3$8hdgFYzj5P0VZ5DdKX3GbU6S4ir+MKvDuJw+IxXWUps=", - "last_login": "2023-03-08T14:34:56Z", - "is_superuser": true, - "email": "adelynn@test.com", - "is_staff": true, - "is_active": true, - "first_name": "adelynn", - "last_name": "test", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$vhogqyr2pJaL6WBPxxtzi3$8hdgFYzj5P0VZ5DdKX3GbU6S4ir+MKvDuJw+IxXWUps=", + "last_login": "2023-03-08T14:34:56Z", + "is_superuser": true, + "email": "adelynn@test.com", + "is_staff": true, + "is_active": true, + "first_name": "adelynn", + "last_name": "test", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$UFrlHyLlYahe07tzEmsSGE$VW0Ljk/CUQ9sHdM0phhvJGB0h/gM3XVBZ/HFr/s3HFI=", - "last_login": "2023-03-08T14:35:58Z", - "is_superuser": false, - "email": "suzanne@test.com", - "is_staff": false, - "is_active": true, - "first_name": "suzanne", - "last_name": "test", - "phone_number": "+32485710347", - "role": 3, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$UFrlHyLlYahe07tzEmsSGE$VW0Ljk/CUQ9sHdM0phhvJGB0h/gM3XVBZ/HFr/s3HFI=", + "last_login": "2023-03-08T14:35:58Z", + "is_superuser": false, + "email": "suzanne@test.com", + "is_staff": false, + "is_active": true, + "first_name": "suzanne", + "last_name": "test", + "phone_number": "+32485710347", + "role": 3, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$IdFPf7AAgbNNbUr6WFusPg$HTOJKtUmfgJWakEiH8iTOseGhuvqnjDekbut7SYo1M4=", - "last_login": "2023-03-08T14:36:08Z", - "is_superuser": false, - "email": "suzy@test.com", - "is_staff": false, - "is_active": true, - "first_name": "suzy", - "last_name": "test", - "phone_number": "+32485710347", - "role": 3, - "groups": [], - "user_permissions": [], - "region": [ - 2 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$IdFPf7AAgbNNbUr6WFusPg$HTOJKtUmfgJWakEiH8iTOseGhuvqnjDekbut7SYo1M4=", + "last_login": "2023-03-08T14:36:08Z", + "is_superuser": false, + "email": "suzy@test.com", + "is_staff": false, + "is_active": true, + "first_name": "suzy", + "last_name": "test", + "phone_number": "+32485710347", + "role": 3, + "groups": [], + "user_permissions": [], + "region": [ + 2 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$390000$9p0V9GsM63gajT3c3xv5rc$BCuQQLRQDpuiySMdobkBQnKv37rIUQyc3I8rI47SXU0=", - "last_login": "2023-03-08T14:36:25Z", - "is_superuser": false, - "email": "suffried@test.com", - "is_staff": false, - "is_active": false, - "first_name": "suffried", - "last_name": "test", - "phone_number": "+32485710347", - "role": 3, - "groups": [], - "user_permissions": [], - "region": [ - 1 - ] - } -}, -{ + "password": "pbkdf2_sha256$390000$9p0V9GsM63gajT3c3xv5rc$BCuQQLRQDpuiySMdobkBQnKv37rIUQyc3I8rI47SXU0=", + "last_login": "2023-03-08T14:36:25Z", + "is_superuser": false, + "email": "suffried@test.com", + "is_staff": false, + "is_active": false, + "first_name": "suffried", + "last_name": "test", + "phone_number": "+32485710347", + "role": 3, + "groups": [], + "user_permissions": [], + "region": [ + 1 + ] + } + }, + { "model": "base.user", "fields": { - "password": "pbkdf2_sha256$600000$b1a7I4XTFcwAp1HbW6ZcLB$DK5/usk4REL+kbR0iQfYlQ4Z/s46bCRkDTU627YchZM=", - "last_login": "2023-04-20T08:37:35.674Z", - "is_superuser": true, - "email": "admin@test.com", - "is_staff": true, - "is_active": true, - "first_name": "joe", - "last_name": "joe", - "phone_number": "+32485710347", - "role": 2, - "groups": [], - "user_permissions": [], - "region": [ - 1, - 3 - ] - } -}, -{ + "password": "pbkdf2_sha256$600000$b1a7I4XTFcwAp1HbW6ZcLB$DK5/usk4REL+kbR0iQfYlQ4Z/s46bCRkDTU627YchZM=", + "last_login": "2023-04-20T08:37:35.674Z", + "is_superuser": true, + "email": "admin@test.com", + "is_staff": true, + "is_active": true, + "first_name": "joe", + "last_name": "joe", + "phone_number": "+32485710347", + "role": 2, + "groups": [], + "user_permissions": [], + "region": [ + 1, + 3 + ] + } + }, + { "model": "base.building", "pk": 1, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 1, - "bus": "No bus", - "client_number": "48943513", - "duration": "00:30:00", - "syndic": [ - "sylke@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 1, + "bus": "No bus", + "client_number": "48943513", + "duration": "00:30:00", + "syndic": [ + "sylke@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 2, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 1, - "bus": "No bus", - "client_number": null, - "duration": "00:45:00", - "syndic": [ - "sylvano@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 1, + "bus": "No bus", + "client_number": null, + "duration": "00:45:00", + "syndic": [ + "sylvano@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 3, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Universiteitsplein", - "house_number": 1, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Universiteitsplein", + "house_number": 1, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 4, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Groenenborgerlaan", - "house_number": 171, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Groenenborgerlaan", + "house_number": 171, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 5, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Middelheimlaan", - "house_number": 1, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Middelheimlaan", + "house_number": 1, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 6, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Prinsstraat", - "house_number": 13, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Prinsstraat", + "house_number": 13, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 7, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Krijgslaan", - "house_number": 281, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Krijgslaan", + "house_number": 281, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 8, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Karel Lodewijk Ledeganckstraat", - "house_number": 35, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Karel Lodewijk Ledeganckstraat", + "house_number": 35, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 9, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Tweekerkenstraat", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Tweekerkenstraat", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 10, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Sint-Pietersnieuwstraat", - "house_number": 33, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Sint-Pietersnieuwstraat", + "house_number": 33, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 11, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 12, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 3, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 3, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 13, "fields": { - "city": "Gent", - "postal_code": "9000", - "street": "Veldstraat", - "house_number": 4, - "bus": "No bus", - "client_number": null, - "duration": "01:00:00", - "syndic": [ - "sylvano@test.com" - ], - "region": 1, - "name": null, - "public_id": null - } -}, -{ + "city": "Gent", + "postal_code": "9000", + "street": "Veldstraat", + "house_number": 4, + "bus": "No bus", + "client_number": null, + "duration": "01:00:00", + "syndic": [ + "sylvano@test.com" + ], + "region": 1, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 14, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 15, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 3, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": null, - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 3, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 16, "fields": { - "city": "Antwerpen", - "postal_code": "2000", - "street": "Grote Markt", - "house_number": 4, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 2, - "name": "Markt Antwerpen", - "public_id": null - } -}, -{ + "city": "Antwerpen", + "postal_code": "2000", + "street": "Grote Markt", + "house_number": 4, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 2, + "name": "Markt Antwerpen", + "public_id": null + } + }, + { "model": "base.building", "pk": 18, "fields": { - "city": "Brugge", - "postal_code": "8000", - "street": "steenstraat", - "house_number": 6, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": null, - "name": null, - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8000", + "street": "steenstraat", + "house_number": 6, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": null, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 19, "fields": { - "city": "Brugge", - "postal_code": "8310", - "street": "'t Zand", - "house_number": 2, - "bus": "No bus", - "client_number": null, - "duration": "00:00:00", - "syndic": [ - "sydney@test.com" - ], - "region": 3, - "name": null, - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8310", + "street": "'t Zand", + "house_number": 2, + "bus": "No bus", + "client_number": null, + "duration": "00:00:00", + "syndic": [ + "sydney@test.com" + ], + "region": 3, + "name": null, + "public_id": null + } + }, + { "model": "base.building", "pk": 20, "fields": { - "city": "Brugge", - "postal_code": "8000", - "street": "Palingstraat", - "house_number": 42, - "bus": "", - "client_number": "648492H895420", - "duration": "00:10:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 3, - "name": "Brugge - Palingstraat", - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8000", + "street": "Palingstraat", + "house_number": 42, + "bus": "", + "client_number": "648492H895420", + "duration": "00:10:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 3, + "name": "Brugge - Palingstraat", + "public_id": null + } + }, + { "model": "base.building", "pk": 21, "fields": { - "city": "Brugge", - "postal_code": "8000", - "street": "Stropersgracht", - "house_number": 32, - "bus": "", - "client_number": "7463820H587392", - "duration": "00:20:00", - "syndic": [ - "sylvian@test.com" - ], - "region": 3, - "name": "Stropersgracht- Brugge", - "public_id": null - } -}, -{ + "city": "Brugge", + "postal_code": "8000", + "street": "Stropersgracht", + "house_number": 32, + "bus": "", + "client_number": "7463820H587392", + "duration": "00:20:00", + "syndic": [ + "sylvian@test.com" + ], + "region": 3, + "name": "Stropersgracht- Brugge", + "public_id": null + } + }, + { "model": "base.buildingcomment", "pk": 2, "fields": { - "comment": "De deur is moeilijk te openen.", - "date": "2023-04-20T09:00:08Z", - "building": 1 + "comment": "De deur is moeilijk te openen.", + "date": "2023-04-20T09:00:08Z", + "building": 1 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 3, "fields": { - "comment": "De code van de poort is 1234.", - "date": "2023-04-20T09:01:59Z", - "building": 2 + "comment": "De code van de poort is 1234.", + "date": "2023-04-20T09:01:59Z", + "building": 2 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 4, "fields": { - "comment": "De containers staan in verschillende ruimtes.", - "date": "2023-04-20T09:02:26Z", - "building": 3 + "comment": "De containers staan in verschillende ruimtes.", + "date": "2023-04-20T09:02:26Z", + "building": 3 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 5, "fields": { - "comment": "Je moet langs de achterdeur van het gebouw binnen.", - "date": "2023-04-20T09:02:54Z", - "building": 4 + "comment": "Je moet langs de achterdeur van het gebouw binnen.", + "date": "2023-04-20T09:02:54Z", + "building": 4 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 6, "fields": { - "comment": "Bel aan bij bewoner op nummer 3, deze laat je binnen.", - "date": "2023-04-20T09:03:44Z", - "building": 11 + "comment": "Bel aan bij bewoner op nummer 3, deze laat je binnen.", + "date": "2023-04-20T09:03:44Z", + "building": 11 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 7, "fields": { - "comment": "De code van de poort is 5395", - "date": "2023-04-20T09:04:09Z", - "building": 12 + "comment": "De code van de poort is 5395", + "date": "2023-04-20T09:04:09Z", + "building": 12 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 8, "fields": { - "comment": "PMD en REST staan op het gelijkvloers, de rest in de kelder.", - "date": "2023-04-20T09:04:30Z", - "building": 13 + "comment": "PMD en REST staan op het gelijkvloers, de rest in de kelder.", + "date": "2023-04-20T09:04:30Z", + "building": 13 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 9, "fields": { - "comment": "Je moet langs de grote poort binnen.", - "date": "2023-04-20T09:04:49Z", - "building": 15 + "comment": "Je moet langs de grote poort binnen.", + "date": "2023-04-20T09:04:49Z", + "building": 15 } -}, -{ + }, + { "model": "base.buildingcomment", "pk": 10, "fields": { - "comment": "De containers hangen vast met een slot (code 7361)", - "date": "2023-04-20T09:05:37Z", - "building": 13 + "comment": "De containers hangen vast met een slot (code 7361)", + "date": "2023-04-20T09:05:37Z", + "building": 13 } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 1, "fields": { - "building": 1, - "date": "2023-03-08", - "garbage_type": "GFT" + "building": 1, + "date": "2023-03-08", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 5, "fields": { - "building": 16, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 16, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 6, "fields": { - "building": 1, - "date": "2023-03-09", - "garbage_type": "PMD" + "building": 1, + "date": "2023-03-09", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 7, "fields": { - "building": 15, - "date": "2023-03-09", - "garbage_type": "RES" + "building": 15, + "date": "2023-03-09", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 8, "fields": { - "building": 15, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 15, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 9, "fields": { - "building": 14, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 14, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 10, "fields": { - "building": 14, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 14, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 11, "fields": { - "building": 16, - "date": "2023-03-09", - "garbage_type": "GLS" + "building": 16, + "date": "2023-03-09", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 12, "fields": { - "building": 2, - "date": "2023-03-08", - "garbage_type": "GFT" + "building": 2, + "date": "2023-03-08", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 13, "fields": { - "building": 2, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 2, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 14, "fields": { - "building": 11, - "date": "2023-03-08", - "garbage_type": "PMD" + "building": 11, + "date": "2023-03-08", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 15, "fields": { - "building": 11, - "date": "2023-03-09", - "garbage_type": "GLS" + "building": 11, + "date": "2023-03-09", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 16, "fields": { - "building": 12, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 12, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 17, "fields": { - "building": 12, - "date": "2023-03-09", - "garbage_type": "PMD" + "building": 12, + "date": "2023-03-09", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 18, "fields": { - "building": 13, - "date": "2023-03-08", - "garbage_type": "GRF" + "building": 13, + "date": "2023-03-08", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 19, "fields": { - "building": 13, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 13, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 20, "fields": { - "building": 7, - "date": "2023-03-08", - "garbage_type": "GFT" + "building": 7, + "date": "2023-03-08", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 21, "fields": { - "building": 7, - "date": "2023-03-09", - "garbage_type": "GRF" + "building": 7, + "date": "2023-03-09", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 22, "fields": { - "building": 10, - "date": "2023-03-08", - "garbage_type": "GRF" + "building": 10, + "date": "2023-03-08", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 23, "fields": { - "building": 10, - "date": "2023-03-09", - "garbage_type": "PAP" + "building": 10, + "date": "2023-03-09", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 24, "fields": { - "building": 9, - "date": "2023-03-08", - "garbage_type": "PMD" + "building": 9, + "date": "2023-03-08", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 25, "fields": { - "building": 9, - "date": "2023-03-09", - "garbage_type": "RES" + "building": 9, + "date": "2023-03-09", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 26, "fields": { - "building": 8, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 8, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 27, "fields": { - "building": 8, - "date": "2023-03-08", - "garbage_type": "GLS" + "building": 8, + "date": "2023-03-08", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 28, "fields": { - "building": 6, - "date": "2023-03-08", - "garbage_type": "GLS" + "building": 6, + "date": "2023-03-08", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 29, "fields": { - "building": 6, - "date": "2023-03-09", - "garbage_type": "KER" + "building": 6, + "date": "2023-03-09", + "garbage_type": "KER" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 30, "fields": { - "building": 5, - "date": "2023-03-08", - "garbage_type": "PMD" + "building": 5, + "date": "2023-03-08", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 31, "fields": { - "building": 5, - "date": "2023-03-09", - "garbage_type": "GRF" + "building": 5, + "date": "2023-03-09", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 32, "fields": { - "building": 4, - "date": "2023-03-08", - "garbage_type": "GLS" + "building": 4, + "date": "2023-03-08", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 33, "fields": { - "building": 4, - "date": "2023-03-09", - "garbage_type": "RES" + "building": 4, + "date": "2023-03-09", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 34, "fields": { - "building": 3, - "date": "2023-03-08", - "garbage_type": "PAP" + "building": 3, + "date": "2023-03-08", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 35, "fields": { - "building": 3, - "date": "2023-03-09", - "garbage_type": "GFT" + "building": 3, + "date": "2023-03-09", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 36, "fields": { - "building": 2, - "date": "2023-04-20", - "garbage_type": "GRF" + "building": 2, + "date": "2023-04-20", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 37, "fields": { - "building": 2, - "date": "2023-04-20", - "garbage_type": "GLS" + "building": 2, + "date": "2023-04-20", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 38, "fields": { - "building": 2, - "date": "2023-04-21", - "garbage_type": "PAP" + "building": 2, + "date": "2023-04-21", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 39, "fields": { - "building": 2, - "date": "2023-04-21", - "garbage_type": "PMD" + "building": 2, + "date": "2023-04-21", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 40, "fields": { - "building": 11, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 11, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 41, "fields": { - "building": 11, - "date": "2023-04-20", - "garbage_type": "GFT" + "building": 11, + "date": "2023-04-20", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 42, "fields": { - "building": 11, - "date": "2023-04-21", - "garbage_type": "PMD" + "building": 11, + "date": "2023-04-21", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 43, "fields": { - "building": 12, - "date": "2023-04-20", - "garbage_type": "GLS" + "building": 12, + "date": "2023-04-20", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 44, "fields": { - "building": 12, - "date": "2023-04-21", - "garbage_type": "PMD" + "building": 12, + "date": "2023-04-21", + "garbage_type": "PMD" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 45, "fields": { - "building": 12, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 12, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 46, "fields": { - "building": 13, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 13, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 47, "fields": { - "building": 13, - "date": "2023-04-20", - "garbage_type": "PAP" + "building": 13, + "date": "2023-04-20", + "garbage_type": "PAP" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 48, "fields": { - "building": 13, - "date": "2023-04-21", - "garbage_type": "GRF" + "building": 13, + "date": "2023-04-21", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 49, "fields": { - "building": 20, - "date": "2023-04-20", - "garbage_type": "GRF" + "building": 20, + "date": "2023-04-20", + "garbage_type": "GRF" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 50, "fields": { - "building": 19, - "date": "2023-04-21", - "garbage_type": "RES" + "building": 19, + "date": "2023-04-21", + "garbage_type": "RES" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 51, "fields": { - "building": 20, - "date": "2023-04-21", - "garbage_type": "GLS" + "building": 20, + "date": "2023-04-21", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 52, "fields": { - "building": 21, - "date": "2023-04-21", - "garbage_type": "GFT" + "building": 21, + "date": "2023-04-21", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 53, "fields": { - "building": 21, - "date": "2023-04-20", - "garbage_type": "GLS" + "building": 21, + "date": "2023-04-20", + "garbage_type": "GLS" } -}, -{ + }, + { "model": "base.garbagecollection", "pk": 54, "fields": { - "building": 20, - "date": "2023-04-21", - "garbage_type": "GFT" + "building": 20, + "date": "2023-04-21", + "garbage_type": "GFT" } -}, -{ + }, + { "model": "base.tour", "pk": 1, "fields": { - "name": "Centrum", - "region": 1, - "modified_at": "2023-03-08T11:08:29Z" + "name": "Centrum", + "region": 1, + "modified_at": "2023-03-08T11:08:29Z" } -}, -{ + }, + { "model": "base.tour", "pk": 2, "fields": { - "name": "Grote Markt", - "region": 2, - "modified_at": "2023-03-08T11:08:45Z" + "name": "Grote Markt", + "region": 2, + "modified_at": "2023-03-08T11:08:45Z" } -}, -{ + }, + { "model": "base.tour", "pk": 3, "fields": { - "name": "UGent Campussen", - "region": 1, - "modified_at": "2023-03-08T14:58:43Z" + "name": "UGent Campussen", + "region": 1, + "modified_at": "2023-03-08T14:58:43Z" } -}, -{ + }, + { "model": "base.tour", "pk": 4, "fields": { - "name": "UAntwerpen Campussen", - "region": 2, - "modified_at": "2023-03-08T15:00:25Z" + "name": "UAntwerpen Campussen", + "region": 2, + "modified_at": "2023-03-08T15:00:25Z" } -}, -{ + }, + { "model": "base.buildingontour", "pk": 1, "fields": { - "tour": 2, - "building": 1, - "index": 1 + "tour": 2, + "building": 1, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 2, "fields": { - "tour": 1, - "building": 2, - "index": 1 + "tour": 1, + "building": 2, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 3, "fields": { - "tour": 4, - "building": 3, - "index": 1 + "tour": 4, + "building": 3, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 4, "fields": { - "tour": 4, - "building": 4, - "index": 2 + "tour": 4, + "building": 4, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 5, "fields": { - "tour": 4, - "building": 5, - "index": 3 + "tour": 4, + "building": 5, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 6, "fields": { - "tour": 4, - "building": 6, - "index": 4 + "tour": 4, + "building": 6, + "index": 4 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 7, "fields": { - "tour": 3, - "building": 7, - "index": 1 + "tour": 3, + "building": 7, + "index": 1 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 8, "fields": { - "tour": 3, - "building": 10, - "index": 2 + "tour": 3, + "building": 10, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 9, "fields": { - "tour": 3, - "building": 9, - "index": 3 + "tour": 3, + "building": 9, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 10, "fields": { - "tour": 3, - "building": 8, - "index": 4 + "tour": 3, + "building": 8, + "index": 4 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 11, "fields": { - "tour": 1, - "building": 11, - "index": 2 + "tour": 1, + "building": 11, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 12, "fields": { - "tour": 1, - "building": 12, - "index": 3 + "tour": 1, + "building": 12, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 13, "fields": { - "tour": 1, - "building": 13, - "index": 4 + "tour": 1, + "building": 13, + "index": 4 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 14, "fields": { - "tour": 2, - "building": 14, - "index": 2 + "tour": 2, + "building": 14, + "index": 2 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 15, "fields": { - "tour": 2, - "building": 15, - "index": 3 + "tour": 2, + "building": 15, + "index": 3 } -}, -{ + }, + { "model": "base.buildingontour", "pk": 16, "fields": { - "tour": 2, - "building": 16, - "index": 4 + "tour": 2, + "building": 16, + "index": 4 + } + }, + { + "model": "base.studentontour", + "pk": 1, + "fields": { + "tour": 1, + "date": "2023-04-01", + "started_tour": "2023-04-01T00:00:00+02:00", + "completed_tour": "2023-04-01T00:35:00+02:00", + "student": [ + "stijn@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 2, + "fields": { + "tour": 3, + "date": "2023-04-01", + "started_tour": "2023-04-01T00:00:00+02:00", + "completed_tour": "2023-04-01T00:35:00+02:00", + "student": [ + "stef@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 3, + "fields": { + "tour": 1, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "steven@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 4, + "fields": { + "tour": 1, + "date": "2023-04-11", + "started_tour": "2023-04-11T00:00:00+02:00", + "completed_tour": "2023-04-11T00:35:00+02:00", + "student": [ + "stephan@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 5, + "fields": { + "tour": 1, + "date": "2023-04-11", + "started_tour": "2023-04-11T00:00:00+02:00", + "completed_tour": "2023-04-11T00:35:00+02:00", + "student": [ + "sten@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 6, + "fields": { + "tour": 1, + "date": "2023-04-24", + "started_tour": "2023-04-24T00:00:00+02:00", + "completed_tour": "2023-04-24T00:35:00+02:00", + "student": [ + "stijn@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 7, + "fields": { + "tour": 1, + "date": "2023-04-27", + "started_tour": "2023-04-27T00:00:00+02:00", + "completed_tour": "2023-04-27T00:35:00+02:00", + "student": [ + "steven@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 8, + "fields": { + "tour": 1, + "date": "2023-04-22", + "started_tour": "2023-04-22T00:00:00+02:00", + "completed_tour": "2023-04-22T00:35:00+02:00", + "student": [ + "sten@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 9, + "fields": { + "tour": 1, + "date": "2023-04-17", + "started_tour": "2023-04-17T00:00:00+02:00", + "completed_tour": "2023-04-17T00:35:00+02:00", + "student": [ + "stijn@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 10, + "fields": { + "tour": 2, + "date": "2023-04-10", + "started_tour": "2023-04-10T00:00:00+02:00", + "completed_tour": "2023-04-10T00:35:00+02:00", + "student": [ + "stella@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 11, + "fields": { + "tour": 4, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "stefanie@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 12, + "fields": { + "tour": 2, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 13, + "fields": { + "tour": 2, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "stefanie@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 14, + "fields": { + "tour": 4, + "date": "2023-04-26", + "started_tour": "2023-04-26T00:00:00+02:00", + "completed_tour": "2023-04-26T00:35:00+02:00", + "student": [ + "stella@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 15, + "fields": { + "tour": 4, + "date": "2023-04-10", + "started_tour": "2023-04-10T00:00:00+02:00", + "completed_tour": "2023-04-10T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 16, + "fields": { + "tour": 1, + "date": "2023-04-04", + "started_tour": "2023-04-04T00:00:00+02:00", + "completed_tour": "2023-04-04T00:35:00+02:00", + "student": [ + "stanford@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 17, + "fields": { + "tour": 4, + "date": "2023-04-16", + "started_tour": "2023-04-16T00:00:00+02:00", + "completed_tour": "2023-04-16T00:35:00+02:00", + "student": [ + "sterre@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 18, + "fields": { + "tour": 1, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "stephan@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 19, + "fields": { + "tour": 4, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "stefanie@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 20, + "fields": { + "tour": 2, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "stella@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 21, + "fields": { + "tour": 1, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "stanford@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 22, + "fields": { + "tour": 3, + "date": "2023-04-20", + "started_tour": "2023-04-20T00:00:00+02:00", + "completed_tour": "2023-04-20T00:35:00+02:00", + "student": [ + "steven@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 24, + "fields": { + "tour": 2, + "date": "2023-04-21", + "started_tour": "2023-04-21T00:00:00+02:00", + "completed_tour": "2023-04-21T00:35:00+02:00", + "student": [ + "sterre@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 25, + "fields": { + "tour": 4, + "date": "2023-04-21", + "started_tour": "2023-04-21T00:00:00+02:00", + "completed_tour": "2023-04-21T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 26, + "fields": { + "tour": 3, + "date": "2023-04-21", + "started_tour": "2023-04-21T00:00:00+02:00", + "completed_tour": "2023-04-21T00:35:00+02:00", + "student": [ + "stef@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 52, + "fields": { + "tour": 1, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "stanford@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 53, + "fields": { + "tour": 2, + "date": "2023-04-17", + "started_tour": "2023-04-17T00:00:00+02:00", + "completed_tour": "2023-04-17T00:35:00+02:00", + "student": [ + "stella@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 54, + "fields": { + "tour": 3, + "date": "2023-04-19", + "started_tour": "2023-04-19T00:00:00+02:00", + "completed_tour": "2023-04-19T00:35:00+02:00", + "student": [ + "sten@test.com" + ] + } + }, + { + "model": "base.studentontour", + "pk": 55, + "fields": { + "tour": 2, + "date": "2023-04-18", + "started_tour": "2023-04-18T00:00:00+02:00", + "completed_tour": "2023-04-18T00:35:00+02:00", + "student": [ + "stacey@test.com" + ] + } + }, + { + "model": "base.remarkatbuilding", + "pk": 16, + "fields": { + "student_on_tour": 9, + "building": 12, + "timestamp": "2023-04-20T10:33:57Z", + "remark": "Binnen", + "type": "BI" + } + }, + { + "model": "base.remarkatbuilding", + "pk": 17, + "fields": { + "student_on_tour": 13, + "building": 15, + "timestamp": "2023-04-24T10:34:17Z", + "remark": "Een bewoner zei me dat er niet gesorteerd wordt.", + "type": "OP" + } + }, + { + "model": "base.remarkatbuilding", + "pk": 18, + "fields": { + "student_on_tour": 11, + "building": 4, + "timestamp": "2023-04-20T11:24:39Z", + "remark": "De deur is geblokkeerd.", + "type": "OP" + } + }, + { + "model": "base.remarkatbuilding", + "pk": 19, + "fields": { + "student_on_tour": 3, + "building": 11, + "timestamp": "2023-04-20T11:25:16Z", + "remark": "Vertrek", + "type": "VE" } -}, -{ + }, + { "model": "base.emailtemplate", "pk": 1, "fields": { - "name": "Containers 404", - "template": "Beste,\r\n\r\n\r\nDrTrottoir kon uw containers niet buitenzetten, omdat deze niet op de afgesproken plaats stonden.\r\n\r\nSurf naar de link van uw gebouw om de foto's te raadplegen.\r\n\r\n\r\nMet vriendelijke groeten,\r\nTeam DrTrottoir" + "name": "Containers 404", + "template": "Beste,\r\n\r\n\r\nDrTrottoir kon uw containers niet buitenzetten, omdat deze niet op de afgesproken plaats stonden.\r\n\r\nSurf naar de link van uw gebouw om de foto's te raadplegen.\r\n\r\n\r\nMet vriendelijke groeten,\r\nTeam DrTrottoir" } -}, -{ + }, + { "model": "base.emailtemplate", "pk": 2, "fields": { - "name": "Staking IVAGO", - "template": "Beste,\r\n\r\n\r\nZoals u wellicht al vernomen hebt, staken de vuilnismannen -en vrouwen van IVAGO.\r\n\r\nDrTrottoir zal dus uitzonderlijk niet langskomen om uw containers buiten te zetten.\r\n\r\n\r\nMet vriendelijke groeten,\r\nDrTrottoir" + "name": "Staking IVAGO", + "template": "Beste,\r\n\r\n\r\nZoals u wellicht al vernomen hebt, staken de vuilnismannen -en vrouwen van IVAGO.\r\n\r\nDrTrottoir zal dus uitzonderlijk niet langskomen om uw containers buiten te zetten.\r\n\r\n\r\nMet vriendelijke groeten,\r\nDrTrottoir" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 1, "fields": { - "user": null, - "jti": "a195fc2e7bd2401ea22fda9d83850779", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg3NCwiaWF0IjoxNjc4MjczMjc0LCJqdGkiOiJhMTk1ZmMyZTdiZDI0MDFlYTIyZmRhOWQ4Mzg1MDc3OSIsInVzZXJfaWQiOjJ9.IMc_u4M0O-eOhmj0VneNZV6rob68vbdzBDKTyvPtu38", - "created_at": "2023-03-08T11:01:14.548Z", - "expires_at": "2023-03-22T11:01:14Z" + "user": null, + "jti": "a195fc2e7bd2401ea22fda9d83850779", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg3NCwiaWF0IjoxNjc4MjczMjc0LCJqdGkiOiJhMTk1ZmMyZTdiZDI0MDFlYTIyZmRhOWQ4Mzg1MDc3OSIsInVzZXJfaWQiOjJ9.IMc_u4M0O-eOhmj0VneNZV6rob68vbdzBDKTyvPtu38", + "created_at": "2023-03-08T11:01:14.548Z", + "expires_at": "2023-03-22T11:01:14Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 2, "fields": { - "user": null, - "jti": "124b7a3ac2654ad7b22d5dadee830693", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg5NCwiaWF0IjoxNjc4MjczMjk0LCJqdGkiOiIxMjRiN2EzYWMyNjU0YWQ3YjIyZDVkYWRlZTgzMDY5MyIsInVzZXJfaWQiOjN9._jd_jI10naYOQdIxGp3nSsacPaQN1CblJiMO_42MmNU", - "created_at": "2023-03-08T11:01:34.702Z", - "expires_at": "2023-03-22T11:01:34Z" + "user": null, + "jti": "124b7a3ac2654ad7b22d5dadee830693", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjg5NCwiaWF0IjoxNjc4MjczMjk0LCJqdGkiOiIxMjRiN2EzYWMyNjU0YWQ3YjIyZDVkYWRlZTgzMDY5MyIsInVzZXJfaWQiOjN9._jd_jI10naYOQdIxGp3nSsacPaQN1CblJiMO_42MmNU", + "created_at": "2023-03-08T11:01:34.702Z", + "expires_at": "2023-03-22T11:01:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 3, "fields": { - "user": null, - "jti": "d3825c9a4f074327a9f6832a9b54743a", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4MjkxOSwiaWF0IjoxNjc4MjczMzE5LCJqdGkiOiJkMzgyNWM5YTRmMDc0MzI3YTlmNjgzMmE5YjU0NzQzYSIsInVzZXJfaWQiOjR9.vM_cNpsJPBy21_4c_XCaFuZvHAFJU-z9k2TJj0xUr3E", - "created_at": "2023-03-08T11:01:59.707Z", - "expires_at": "2023-03-22T11:01:59Z" + "user": null, + "jti": "d3825c9a4f074327a9f6832a9b54743a", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4MjkxOSwiaWF0IjoxNjc4MjczMzE5LCJqdGkiOiJkMzgyNWM5YTRmMDc0MzI3YTlmNjgzMmE5YjU0NzQzYSIsInVzZXJfaWQiOjR9.vM_cNpsJPBy21_4c_XCaFuZvHAFJU-z9k2TJj0xUr3E", + "created_at": "2023-03-08T11:01:59.707Z", + "expires_at": "2023-03-22T11:01:59Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 4, "fields": { - "user": null, - "jti": "20286babfa6a4c768f6edb4ab9da6fe7", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk1MSwiaWF0IjoxNjc4MjczMzUxLCJqdGkiOiIyMDI4NmJhYmZhNmE0Yzc2OGY2ZWRiNGFiOWRhNmZlNyIsInVzZXJfaWQiOjV9.wb468ciVP-CLyIy7w6Q4ivAIcXCszLPTG-yJWvdOwHA", - "created_at": "2023-03-08T11:02:31.902Z", - "expires_at": "2023-03-22T11:02:31Z" + "user": null, + "jti": "20286babfa6a4c768f6edb4ab9da6fe7", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk1MSwiaWF0IjoxNjc4MjczMzUxLCJqdGkiOiIyMDI4NmJhYmZhNmE0Yzc2OGY2ZWRiNGFiOWRhNmZlNyIsInVzZXJfaWQiOjV9.wb468ciVP-CLyIy7w6Q4ivAIcXCszLPTG-yJWvdOwHA", + "created_at": "2023-03-08T11:02:31.902Z", + "expires_at": "2023-03-22T11:02:31Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 5, "fields": { - "user": null, - "jti": "60594ba953c1489fb4863d17006bfe11", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk4MywiaWF0IjoxNjc4MjczMzgzLCJqdGkiOiI2MDU5NGJhOTUzYzE0ODlmYjQ4NjNkMTcwMDZiZmUxMSIsInVzZXJfaWQiOjZ9.MgyQe0yLxpXzzORVabq_kEwykczAxqfwaBg-e1Qw79Q", - "created_at": "2023-03-08T11:03:03.395Z", - "expires_at": "2023-03-22T11:03:03Z" + "user": null, + "jti": "60594ba953c1489fb4863d17006bfe11", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ4Mjk4MywiaWF0IjoxNjc4MjczMzgzLCJqdGkiOiI2MDU5NGJhOTUzYzE0ODlmYjQ4NjNkMTcwMDZiZmUxMSIsInVzZXJfaWQiOjZ9.MgyQe0yLxpXzzORVabq_kEwykczAxqfwaBg-e1Qw79Q", + "created_at": "2023-03-08T11:03:03.395Z", + "expires_at": "2023-03-22T11:03:03Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 6, "fields": { - "user": null, - "jti": "c042eb4d94b645d7a8cd71baf5146499", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTA1NywiaWF0IjoxNjc4Mjg1NDU3LCJqdGkiOiJjMDQyZWI0ZDk0YjY0NWQ3YThjZDcxYmFmNTE0NjQ5OSIsInVzZXJfaWQiOjl9.U2BKOI0JwBMEXTsf-C6WTIELmEh_HAb6ytvhq2Owpx0", - "created_at": "2023-03-08T14:24:17.841Z", - "expires_at": "2023-03-22T14:24:17Z" + "user": null, + "jti": "c042eb4d94b645d7a8cd71baf5146499", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTA1NywiaWF0IjoxNjc4Mjg1NDU3LCJqdGkiOiJjMDQyZWI0ZDk0YjY0NWQ3YThjZDcxYmFmNTE0NjQ5OSIsInVzZXJfaWQiOjl9.U2BKOI0JwBMEXTsf-C6WTIELmEh_HAb6ytvhq2Owpx0", + "created_at": "2023-03-08T14:24:17.841Z", + "expires_at": "2023-03-22T14:24:17Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 7, "fields": { - "user": [ - "sylvie@test.com" - ], - "jti": "4ab2f439d29447c69548af90a355e5cb", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE2OCwiaWF0IjoxNjc4Mjg1NTY4LCJqdGkiOiI0YWIyZjQzOWQyOTQ0N2M2OTU0OGFmOTBhMzU1ZTVjYiIsInVzZXJfaWQiOjEwfQ.oM3ymBpn09bo2rnzCMt3A77EvLAvDYLbPpPQojWxfIk", - "created_at": "2023-03-08T14:26:08.612Z", - "expires_at": "2023-03-22T14:26:08Z" + "user": [ + "sylvie@test.com" + ], + "jti": "4ab2f439d29447c69548af90a355e5cb", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE2OCwiaWF0IjoxNjc4Mjg1NTY4LCJqdGkiOiI0YWIyZjQzOWQyOTQ0N2M2OTU0OGFmOTBhMzU1ZTVjYiIsInVzZXJfaWQiOjEwfQ.oM3ymBpn09bo2rnzCMt3A77EvLAvDYLbPpPQojWxfIk", + "created_at": "2023-03-08T14:26:08.612Z", + "expires_at": "2023-03-22T14:26:08Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 8, "fields": { - "user": [ - "sydney@test.com" - ], - "jti": "2e612182bf5a46f7a51e95ac26c68510", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE5NCwiaWF0IjoxNjc4Mjg1NTk0LCJqdGkiOiIyZTYxMjE4MmJmNWE0NmY3YTUxZTk1YWMyNmM2ODUxMCIsInVzZXJfaWQiOjExfQ.jgWA0qnic42iOQu4l8Ybiq00j1KnC_Te3bGs6eNY0AY", - "created_at": "2023-03-08T14:26:34.597Z", - "expires_at": "2023-03-22T14:26:34Z" + "user": [ + "sydney@test.com" + ], + "jti": "2e612182bf5a46f7a51e95ac26c68510", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTE5NCwiaWF0IjoxNjc4Mjg1NTk0LCJqdGkiOiIyZTYxMjE4MmJmNWE0NmY3YTUxZTk1YWMyNmM2ODUxMCIsInVzZXJfaWQiOjExfQ.jgWA0qnic42iOQu4l8Ybiq00j1KnC_Te3bGs6eNY0AY", + "created_at": "2023-03-08T14:26:34.597Z", + "expires_at": "2023-03-22T14:26:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 9, "fields": { - "user": [ - "sylvano@test.com" - ], - "jti": "1da1f96e125a4da590458f2a5b736d99", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTIyNywiaWF0IjoxNjc4Mjg1NjI3LCJqdGkiOiIxZGExZjk2ZTEyNWE0ZGE1OTA0NThmMmE1YjczNmQ5OSIsInVzZXJfaWQiOjEyfQ.IFuNLKM5_lgvT8qS7zN3YjtgQrWptAUriGRfYX5Qekc", - "created_at": "2023-03-08T14:27:07.841Z", - "expires_at": "2023-03-22T14:27:07Z" + "user": [ + "sylvano@test.com" + ], + "jti": "1da1f96e125a4da590458f2a5b736d99", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTIyNywiaWF0IjoxNjc4Mjg1NjI3LCJqdGkiOiIxZGExZjk2ZTEyNWE0ZGE1OTA0NThmMmE1YjczNmQ5OSIsInVzZXJfaWQiOjEyfQ.IFuNLKM5_lgvT8qS7zN3YjtgQrWptAUriGRfYX5Qekc", + "created_at": "2023-03-08T14:27:07.841Z", + "expires_at": "2023-03-22T14:27:07Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 10, "fields": { - "user": [ - "sylke@test.com" - ], - "jti": "377080a0df7140f29579dbb3eecb48f2", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTI5NCwiaWF0IjoxNjc4Mjg1Njk0LCJqdGkiOiIzNzcwODBhMGRmNzE0MGYyOTU3OWRiYjNlZWNiNDhmMiIsInVzZXJfaWQiOjEzfQ.wV9vluo6_mWT5LY2pivTYrNfkybOk_hoP5Us1ilqF2c", - "created_at": "2023-03-08T14:28:14.826Z", - "expires_at": "2023-03-22T14:28:14Z" + "user": [ + "sylke@test.com" + ], + "jti": "377080a0df7140f29579dbb3eecb48f2", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTI5NCwiaWF0IjoxNjc4Mjg1Njk0LCJqdGkiOiIzNzcwODBhMGRmNzE0MGYyOTU3OWRiYjNlZWNiNDhmMiIsInVzZXJfaWQiOjEzfQ.wV9vluo6_mWT5LY2pivTYrNfkybOk_hoP5Us1ilqF2c", + "created_at": "2023-03-08T14:28:14.826Z", + "expires_at": "2023-03-22T14:28:14Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 11, "fields": { - "user": [ - "sylvian@test.com" - ], - "jti": "963cc291d9e04d39a3f53a45fd9c69cd", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTMyMCwiaWF0IjoxNjc4Mjg1NzIwLCJqdGkiOiI5NjNjYzI5MWQ5ZTA0ZDM5YTNmNTNhNDVmZDljNjljZCIsInVzZXJfaWQiOjE0fQ.pJo4Epw9pSOgRfIuVCQOQRcgTqT8fRYogO1wwDgps3A", - "created_at": "2023-03-08T14:28:40.954Z", - "expires_at": "2023-03-22T14:28:40Z" + "user": [ + "sylvian@test.com" + ], + "jti": "963cc291d9e04d39a3f53a45fd9c69cd", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTMyMCwiaWF0IjoxNjc4Mjg1NzIwLCJqdGkiOiI5NjNjYzI5MWQ5ZTA0ZDM5YTNmNTNhNDVmZDljNjljZCIsInVzZXJfaWQiOjE0fQ.pJo4Epw9pSOgRfIuVCQOQRcgTqT8fRYogO1wwDgps3A", + "created_at": "2023-03-08T14:28:40.954Z", + "expires_at": "2023-03-22T14:28:40Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 12, "fields": { - "user": [ - "stijn@test.com" - ], - "jti": "6147874370d048ceabb9f4afcfc59435", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQyMiwiaWF0IjoxNjc4Mjg1ODIyLCJqdGkiOiI2MTQ3ODc0MzcwZDA0OGNlYWJiOWY0YWZjZmM1OTQzNSIsInVzZXJfaWQiOjE1fQ.8XdyTyAvDEm-g8esb3yQ5SQ-5VU6CtFmDd8IN38sUUc", - "created_at": "2023-03-08T14:30:22.517Z", - "expires_at": "2023-03-22T14:30:22Z" + "user": [ + "stijn@test.com" + ], + "jti": "6147874370d048ceabb9f4afcfc59435", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQyMiwiaWF0IjoxNjc4Mjg1ODIyLCJqdGkiOiI2MTQ3ODc0MzcwZDA0OGNlYWJiOWY0YWZjZmM1OTQzNSIsInVzZXJfaWQiOjE1fQ.8XdyTyAvDEm-g8esb3yQ5SQ-5VU6CtFmDd8IN38sUUc", + "created_at": "2023-03-08T14:30:22.517Z", + "expires_at": "2023-03-22T14:30:22Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 13, "fields": { - "user": [ - "stef@test.com" - ], - "jti": "b5ae6145cfa141a5ae493757037b0e54", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ0MCwiaWF0IjoxNjc4Mjg1ODQwLCJqdGkiOiJiNWFlNjE0NWNmYTE0MWE1YWU0OTM3NTcwMzdiMGU1NCIsInVzZXJfaWQiOjE2fQ.9Wv_nnNIhwHnze5R4e7l5b0yAtu6-boThkyBrm-FGn0", - "created_at": "2023-03-08T14:30:40.211Z", - "expires_at": "2023-03-22T14:30:40Z" + "user": [ + "stef@test.com" + ], + "jti": "b5ae6145cfa141a5ae493757037b0e54", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ0MCwiaWF0IjoxNjc4Mjg1ODQwLCJqdGkiOiJiNWFlNjE0NWNmYTE0MWE1YWU0OTM3NTcwMzdiMGU1NCIsInVzZXJfaWQiOjE2fQ.9Wv_nnNIhwHnze5R4e7l5b0yAtu6-boThkyBrm-FGn0", + "created_at": "2023-03-08T14:30:40.211Z", + "expires_at": "2023-03-22T14:30:40Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 14, "fields": { - "user": [ - "stephan@test.com" - ], - "jti": "308752884b9440fd83161f3f5909b6e0", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ1OCwiaWF0IjoxNjc4Mjg1ODU4LCJqdGkiOiIzMDg3NTI4ODRiOTQ0MGZkODMxNjFmM2Y1OTA5YjZlMCIsInVzZXJfaWQiOjE3fQ.P_Pm-MAB_61mtte7FI-pDuOe-OLsKQRh7GF0UBCdTfc", - "created_at": "2023-03-08T14:30:58.838Z", - "expires_at": "2023-03-22T14:30:58Z" + "user": [ + "stephan@test.com" + ], + "jti": "308752884b9440fd83161f3f5909b6e0", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ1OCwiaWF0IjoxNjc4Mjg1ODU4LCJqdGkiOiIzMDg3NTI4ODRiOTQ0MGZkODMxNjFmM2Y1OTA5YjZlMCIsInVzZXJfaWQiOjE3fQ.P_Pm-MAB_61mtte7FI-pDuOe-OLsKQRh7GF0UBCdTfc", + "created_at": "2023-03-08T14:30:58.838Z", + "expires_at": "2023-03-22T14:30:58Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 15, "fields": { - "user": [ - "steven@test.com" - ], - "jti": "24b5f64eb7644115941a8c47dcedc5f6", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ3MiwiaWF0IjoxNjc4Mjg1ODcyLCJqdGkiOiIyNGI1ZjY0ZWI3NjQ0MTE1OTQxYThjNDdkY2VkYzVmNiIsInVzZXJfaWQiOjE4fQ.knK-9OnU552iq0uX6rnSyazUrqe6g74hqHTVrtoUyU8", - "created_at": "2023-03-08T14:31:12.014Z", - "expires_at": "2023-03-22T14:31:12Z" + "user": [ + "steven@test.com" + ], + "jti": "24b5f64eb7644115941a8c47dcedc5f6", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTQ3MiwiaWF0IjoxNjc4Mjg1ODcyLCJqdGkiOiIyNGI1ZjY0ZWI3NjQ0MTE1OTQxYThjNDdkY2VkYzVmNiIsInVzZXJfaWQiOjE4fQ.knK-9OnU552iq0uX6rnSyazUrqe6g74hqHTVrtoUyU8", + "created_at": "2023-03-08T14:31:12.014Z", + "expires_at": "2023-03-22T14:31:12Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 16, "fields": { - "user": [ - "sten@test.com" - ], - "jti": "b9fcab5ea226443a838d441716680d8f", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTUyOSwiaWF0IjoxNjc4Mjg1OTI5LCJqdGkiOiJiOWZjYWI1ZWEyMjY0NDNhODM4ZDQ0MTcxNjY4MGQ4ZiIsInVzZXJfaWQiOjE5fQ.UvCX27kD696LrcvTSVPnFutCvdtsYFqtfxTnujuPrtE", - "created_at": "2023-03-08T14:32:09.596Z", - "expires_at": "2023-03-22T14:32:09Z" + "user": [ + "sten@test.com" + ], + "jti": "b9fcab5ea226443a838d441716680d8f", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTUyOSwiaWF0IjoxNjc4Mjg1OTI5LCJqdGkiOiJiOWZjYWI1ZWEyMjY0NDNhODM4ZDQ0MTcxNjY4MGQ4ZiIsInVzZXJfaWQiOjE5fQ.UvCX27kD696LrcvTSVPnFutCvdtsYFqtfxTnujuPrtE", + "created_at": "2023-03-08T14:32:09.596Z", + "expires_at": "2023-03-22T14:32:09Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 17, "fields": { - "user": [ - "sterre@test.com" - ], - "jti": "e7fcbaf80f1849f49e3f11a8abcded05", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU1NSwiaWF0IjoxNjc4Mjg1OTU1LCJqdGkiOiJlN2ZjYmFmODBmMTg0OWY0OWUzZjExYThhYmNkZWQwNSIsInVzZXJfaWQiOjIwfQ.HyvubS-t_6fJbwUHgF7GBNPkk9kxjDR4HTMtcDSFsv8", - "created_at": "2023-03-08T14:32:35.987Z", - "expires_at": "2023-03-22T14:32:35Z" + "user": [ + "sterre@test.com" + ], + "jti": "e7fcbaf80f1849f49e3f11a8abcded05", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU1NSwiaWF0IjoxNjc4Mjg1OTU1LCJqdGkiOiJlN2ZjYmFmODBmMTg0OWY0OWUzZjExYThhYmNkZWQwNSIsInVzZXJfaWQiOjIwfQ.HyvubS-t_6fJbwUHgF7GBNPkk9kxjDR4HTMtcDSFsv8", + "created_at": "2023-03-08T14:32:35.987Z", + "expires_at": "2023-03-22T14:32:35Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 18, "fields": { - "user": [ - "stella@test.com" - ], - "jti": "40c145cd228e46be933bb9b9ddcffa3d", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU2NiwiaWF0IjoxNjc4Mjg1OTY2LCJqdGkiOiI0MGMxNDVjZDIyOGU0NmJlOTMzYmI5YjlkZGNmZmEzZCIsInVzZXJfaWQiOjIxfQ.9a9GA52XeD1zydw_x-z1im6adxF_jkEdNMPbQ0JhM-0", - "created_at": "2023-03-08T14:32:46.714Z", - "expires_at": "2023-03-22T14:32:46Z" + "user": [ + "stella@test.com" + ], + "jti": "40c145cd228e46be933bb9b9ddcffa3d", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU2NiwiaWF0IjoxNjc4Mjg1OTY2LCJqdGkiOiI0MGMxNDVjZDIyOGU0NmJlOTMzYmI5YjlkZGNmZmEzZCIsInVzZXJfaWQiOjIxfQ.9a9GA52XeD1zydw_x-z1im6adxF_jkEdNMPbQ0JhM-0", + "created_at": "2023-03-08T14:32:46.714Z", + "expires_at": "2023-03-22T14:32:46Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 19, "fields": { - "user": [ - "stefanie@test.com" - ], - "jti": "a6c62e0c636b4decb04ce7ca1fd35701", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU3OCwiaWF0IjoxNjc4Mjg1OTc4LCJqdGkiOiJhNmM2MmUwYzYzNmI0ZGVjYjA0Y2U3Y2ExZmQzNTcwMSIsInVzZXJfaWQiOjIyfQ.MblWl6od8iazAFtPi4G0iMqq5xnFslYeXHnDwFO3S4k", - "created_at": "2023-03-08T14:32:58.534Z", - "expires_at": "2023-03-22T14:32:58Z" + "user": [ + "stefanie@test.com" + ], + "jti": "a6c62e0c636b4decb04ce7ca1fd35701", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU3OCwiaWF0IjoxNjc4Mjg1OTc4LCJqdGkiOiJhNmM2MmUwYzYzNmI0ZGVjYjA0Y2U3Y2ExZmQzNTcwMSIsInVzZXJfaWQiOjIyfQ.MblWl6od8iazAFtPi4G0iMqq5xnFslYeXHnDwFO3S4k", + "created_at": "2023-03-08T14:32:58.534Z", + "expires_at": "2023-03-22T14:32:58Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 20, "fields": { - "user": [ - "stacey@test.com" - ], - "jti": "85b0bb691b174c83a56dda7d3fd89e1f", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU4NywiaWF0IjoxNjc4Mjg1OTg3LCJqdGkiOiI4NWIwYmI2OTFiMTc0YzgzYTU2ZGRhN2QzZmQ4OWUxZiIsInVzZXJfaWQiOjIzfQ.OHhanYOT4P2MrNpADE7no77z2gwwZzt0dLOAuqXtgs4", - "created_at": "2023-03-08T14:33:07.333Z", - "expires_at": "2023-03-22T14:33:07Z" + "user": [ + "stacey@test.com" + ], + "jti": "85b0bb691b174c83a56dda7d3fd89e1f", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTU4NywiaWF0IjoxNjc4Mjg1OTg3LCJqdGkiOiI4NWIwYmI2OTFiMTc0YzgzYTU2ZGRhN2QzZmQ4OWUxZiIsInVzZXJfaWQiOjIzfQ.OHhanYOT4P2MrNpADE7no77z2gwwZzt0dLOAuqXtgs4", + "created_at": "2023-03-08T14:33:07.333Z", + "expires_at": "2023-03-22T14:33:07Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 21, "fields": { - "user": [ - "stanford@test.com" - ], - "jti": "e84cba91f5884f39a739f2c6b4722f49", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTYxNCwiaWF0IjoxNjc4Mjg2MDE0LCJqdGkiOiJlODRjYmE5MWY1ODg0ZjM5YTczOWYyYzZiNDcyMmY0OSIsInVzZXJfaWQiOjI0fQ.JtZW4qCLy75mn0PUlT0vBBvadZAA2WE2Kj5OFGIfwO4", - "created_at": "2023-03-08T14:33:34.698Z", - "expires_at": "2023-03-22T14:33:34Z" + "user": [ + "stanford@test.com" + ], + "jti": "e84cba91f5884f39a739f2c6b4722f49", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTYxNCwiaWF0IjoxNjc4Mjg2MDE0LCJqdGkiOiJlODRjYmE5MWY1ODg0ZjM5YTczOWYyYzZiNDcyMmY0OSIsInVzZXJfaWQiOjI0fQ.JtZW4qCLy75mn0PUlT0vBBvadZAA2WE2Kj5OFGIfwO4", + "created_at": "2023-03-08T14:33:34.698Z", + "expires_at": "2023-03-22T14:33:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 22, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "2fc08fcb734444ce90373ae1aa5fdee1", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY2MSwiaWF0IjoxNjc4Mjg2MDYxLCJqdGkiOiIyZmMwOGZjYjczNDQ0NGNlOTAzNzNhZTFhYTVmZGVlMSIsInVzZXJfaWQiOjI1fQ.-NZGL_xv2UB9ZT_HNF1rorE6tWOesLdSWyUpoCyQVE0", - "created_at": "2023-03-08T14:34:21.094Z", - "expires_at": "2023-03-22T14:34:21Z" + "user": [ + "adam@test.com" + ], + "jti": "2fc08fcb734444ce90373ae1aa5fdee1", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY2MSwiaWF0IjoxNjc4Mjg2MDYxLCJqdGkiOiIyZmMwOGZjYjczNDQ0NGNlOTAzNzNhZTFhYTVmZGVlMSIsInVzZXJfaWQiOjI1fQ.-NZGL_xv2UB9ZT_HNF1rorE6tWOesLdSWyUpoCyQVE0", + "created_at": "2023-03-08T14:34:21.094Z", + "expires_at": "2023-03-22T14:34:21Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 23, "fields": { - "user": [ - "adriana@test.com" - ], - "jti": "4cfc52595ae84432b14dc3b73f82ba82", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY3OCwiaWF0IjoxNjc4Mjg2MDc4LCJqdGkiOiI0Y2ZjNTI1OTVhZTg0NDMyYjE0ZGMzYjczZjgyYmE4MiIsInVzZXJfaWQiOjI2fQ.3giXy0wnqJKJcIqzP0ah0I4Sx1qyUpxg1dHADqZwqV4", - "created_at": "2023-03-08T14:34:38.110Z", - "expires_at": "2023-03-22T14:34:38Z" + "user": [ + "adriana@test.com" + ], + "jti": "4cfc52595ae84432b14dc3b73f82ba82", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY3OCwiaWF0IjoxNjc4Mjg2MDc4LCJqdGkiOiI0Y2ZjNTI1OTVhZTg0NDMyYjE0ZGMzYjczZjgyYmE4MiIsInVzZXJfaWQiOjI2fQ.3giXy0wnqJKJcIqzP0ah0I4Sx1qyUpxg1dHADqZwqV4", + "created_at": "2023-03-08T14:34:38.110Z", + "expires_at": "2023-03-22T14:34:38Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 24, "fields": { - "user": [ - "adelynn@test.com" - ], - "jti": "97dd0984f89145a3a8922a8be966ef8b", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY5NSwiaWF0IjoxNjc4Mjg2MDk1LCJqdGkiOiI5N2RkMDk4NGY4OTE0NWEzYTg5MjJhOGJlOTY2ZWY4YiIsInVzZXJfaWQiOjI3fQ.hydG56Tt0FUBrj3ZtBjUmoZDc0uUMCzIuGdZAFVWJgg", - "created_at": "2023-03-08T14:34:55.119Z", - "expires_at": "2023-03-22T14:34:55Z" + "user": [ + "adelynn@test.com" + ], + "jti": "97dd0984f89145a3a8922a8be966ef8b", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTY5NSwiaWF0IjoxNjc4Mjg2MDk1LCJqdGkiOiI5N2RkMDk4NGY4OTE0NWEzYTg5MjJhOGJlOTY2ZWY4YiIsInVzZXJfaWQiOjI3fQ.hydG56Tt0FUBrj3ZtBjUmoZDc0uUMCzIuGdZAFVWJgg", + "created_at": "2023-03-08T14:34:55.119Z", + "expires_at": "2023-03-22T14:34:55Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 25, "fields": { - "user": [ - "suzanne@test.com" - ], - "jti": "fc20b2f7faa0406791a40fadb3133379", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc1NiwiaWF0IjoxNjc4Mjg2MTU2LCJqdGkiOiJmYzIwYjJmN2ZhYTA0MDY3OTFhNDBmYWRiMzEzMzM3OSIsInVzZXJfaWQiOjI4fQ.CoG0GmLBBtjIegZtXYXYMzS-zF2DOyyq88RcTw8i4qk", - "created_at": "2023-03-08T14:35:56.735Z", - "expires_at": "2023-03-22T14:35:56Z" + "user": [ + "suzanne@test.com" + ], + "jti": "fc20b2f7faa0406791a40fadb3133379", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc1NiwiaWF0IjoxNjc4Mjg2MTU2LCJqdGkiOiJmYzIwYjJmN2ZhYTA0MDY3OTFhNDBmYWRiMzEzMzM3OSIsInVzZXJfaWQiOjI4fQ.CoG0GmLBBtjIegZtXYXYMzS-zF2DOyyq88RcTw8i4qk", + "created_at": "2023-03-08T14:35:56.735Z", + "expires_at": "2023-03-22T14:35:56Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 26, "fields": { - "user": [ - "suzy@test.com" - ], - "jti": "b98bf339f03b4ce3ac09cf74de0f4bd8", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc2NiwiaWF0IjoxNjc4Mjg2MTY2LCJqdGkiOiJiOThiZjMzOWYwM2I0Y2UzYWMwOWNmNzRkZTBmNGJkOCIsInVzZXJfaWQiOjI5fQ.Wz7A4peU8Gm4wbBwSuy4UR64gjCsNdq1fISKY32sXeo", - "created_at": "2023-03-08T14:36:06.872Z", - "expires_at": "2023-03-22T14:36:06Z" + "user": [ + "suzy@test.com" + ], + "jti": "b98bf339f03b4ce3ac09cf74de0f4bd8", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc2NiwiaWF0IjoxNjc4Mjg2MTY2LCJqdGkiOiJiOThiZjMzOWYwM2I0Y2UzYWMwOWNmNzRkZTBmNGJkOCIsInVzZXJfaWQiOjI5fQ.Wz7A4peU8Gm4wbBwSuy4UR64gjCsNdq1fISKY32sXeo", + "created_at": "2023-03-08T14:36:06.872Z", + "expires_at": "2023-03-22T14:36:06Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 27, "fields": { - "user": [ - "suffried@test.com" - ], - "jti": "38ea075775b2466ebba75dc29755d907", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc4NCwiaWF0IjoxNjc4Mjg2MTg0LCJqdGkiOiIzOGVhMDc1Nzc1YjI0NjZlYmJhNzVkYzI5NzU1ZDkwNyIsInVzZXJfaWQiOjMwfQ.IS2yXOas30zm5sdmI_AW2lS-T6dgH4SGq1dVdRRHFK8", - "created_at": "2023-03-08T14:36:24.676Z", - "expires_at": "2023-03-22T14:36:24Z" + "user": [ + "suffried@test.com" + ], + "jti": "38ea075775b2466ebba75dc29755d907", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY3OTQ5NTc4NCwiaWF0IjoxNjc4Mjg2MTg0LCJqdGkiOiIzOGVhMDc1Nzc1YjI0NjZlYmJhNzVkYzI5NzU1ZDkwNyIsInVzZXJfaWQiOjMwfQ.IS2yXOas30zm5sdmI_AW2lS-T6dgH4SGq1dVdRRHFK8", + "created_at": "2023-03-08T14:36:24.676Z", + "expires_at": "2023-03-22T14:36:24Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 28, "fields": { - "user": [ - "sylvie@test.com" - ], - "jti": "ccdc94390f1d4550bcc2ad0c8f865cd1", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDU2ODEzNSwiaWF0IjoxNjc5MzU4NTM1LCJqdGkiOiJjY2RjOTQzOTBmMWQ0NTUwYmNjMmFkMGM4Zjg2NWNkMSIsInVzZXJfaWQiOjF9.LenPBPEnciTrlXq1kAmfQXGRLB5FKufpWsjX_UZpaQ8", - "created_at": "2023-03-21T00:28:55.421Z", - "expires_at": "2023-04-04T00:28:55Z" + "user": [ + "sylvie@test.com" + ], + "jti": "ccdc94390f1d4550bcc2ad0c8f865cd1", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDU2ODEzNSwiaWF0IjoxNjc5MzU4NTM1LCJqdGkiOiJjY2RjOTQzOTBmMWQ0NTUwYmNjMmFkMGM4Zjg2NWNkMSIsInVzZXJfaWQiOjF9.LenPBPEnciTrlXq1kAmfQXGRLB5FKufpWsjX_UZpaQ8", + "created_at": "2023-03-21T00:28:55.421Z", + "expires_at": "2023-04-04T00:28:55Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 29, "fields": { - "user": [ - "sylvie@test.com" - ], - "jti": "c3e5abaa82054f04b5439a23267fc253", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA2NiwiaWF0IjoxNjc5NDMzNDY2LCJqdGkiOiJjM2U1YWJhYTgyMDU0ZjA0YjU0MzlhMjMyNjdmYzI1MyIsInVzZXJfaWQiOjF9.3XQU_aE62t3bmdibCK7WNlnwdjr7x4r_Q5RSX_og1sk", - "created_at": "2023-03-21T21:17:46.133Z", - "expires_at": "2023-04-04T21:17:46Z" + "user": [ + "sylvie@test.com" + ], + "jti": "c3e5abaa82054f04b5439a23267fc253", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA2NiwiaWF0IjoxNjc5NDMzNDY2LCJqdGkiOiJjM2U1YWJhYTgyMDU0ZjA0YjU0MzlhMjMyNjdmYzI1MyIsInVzZXJfaWQiOjF9.3XQU_aE62t3bmdibCK7WNlnwdjr7x4r_Q5RSX_og1sk", + "created_at": "2023-03-21T21:17:46.133Z", + "expires_at": "2023-04-04T21:17:46Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 30, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "df1ee19d62bf4198bb3c8452e25d2d76", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA4MCwiaWF0IjoxNjc5NDMzNDgwLCJqdGkiOiJkZjFlZTE5ZDYyYmY0MTk4YmIzYzg0NTJlMjVkMmQ3NiIsInVzZXJfaWQiOjE2fQ.-eO__dlpMIMmWhQvixeWRmuT9b5kIJBMb-erHLL_XD0", - "created_at": "2023-03-21T21:18:00.599Z", - "expires_at": "2023-04-04T21:18:00Z" + "user": [ + "adam@test.com" + ], + "jti": "df1ee19d62bf4198bb3c8452e25d2d76", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzA4MCwiaWF0IjoxNjc5NDMzNDgwLCJqdGkiOiJkZjFlZTE5ZDYyYmY0MTk4YmIzYzg0NTJlMjVkMmQ3NiIsInVzZXJfaWQiOjE2fQ.-eO__dlpMIMmWhQvixeWRmuT9b5kIJBMb-erHLL_XD0", + "created_at": "2023-03-21T21:18:00.599Z", + "expires_at": "2023-04-04T21:18:00Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 31, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "d612262953224410813b5a09741ded52", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzQ3NiwiaWF0IjoxNjc5NDMzODc2LCJqdGkiOiJkNjEyMjYyOTUzMjI0NDEwODEzYjVhMDk3NDFkZWQ1MiIsInVzZXJfaWQiOjE2fQ.dgwAs6gdTLDBBzFJvinX8UL8IfnV3q4e9uyDp3m21_A", - "created_at": "2023-03-21T21:24:36.630Z", - "expires_at": "2023-04-04T21:24:36Z" + "user": [ + "adam@test.com" + ], + "jti": "d612262953224410813b5a09741ded52", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzQ3NiwiaWF0IjoxNjc5NDMzODc2LCJqdGkiOiJkNjEyMjYyOTUzMjI0NDEwODEzYjVhMDk3NDFkZWQ1MiIsInVzZXJfaWQiOjE2fQ.dgwAs6gdTLDBBzFJvinX8UL8IfnV3q4e9uyDp3m21_A", + "created_at": "2023-03-21T21:24:36.630Z", + "expires_at": "2023-04-04T21:24:36Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 32, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "b56cac5faf034716b8279e108b191f66", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzgzOCwiaWF0IjoxNjc5NDM0MjM4LCJqdGkiOiJiNTZjYWM1ZmFmMDM0NzE2YjgyNzllMTA4YjE5MWY2NiIsInVzZXJfaWQiOjE2fQ.lMPCJFeq6nhiHQKPqe6LAePADl3u0K1yvVUKVvdhHGA", - "created_at": "2023-03-21T21:30:38.025Z", - "expires_at": "2023-04-04T21:30:38Z" + "user": [ + "adam@test.com" + ], + "jti": "b56cac5faf034716b8279e108b191f66", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0MzgzOCwiaWF0IjoxNjc5NDM0MjM4LCJqdGkiOiJiNTZjYWM1ZmFmMDM0NzE2YjgyNzllMTA4YjE5MWY2NiIsInVzZXJfaWQiOjE2fQ.lMPCJFeq6nhiHQKPqe6LAePADl3u0K1yvVUKVvdhHGA", + "created_at": "2023-03-21T21:30:38.025Z", + "expires_at": "2023-04-04T21:30:38Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 33, "fields": { - "user": [ - "adam@test.com" - ], - "jti": "ea3f7105db9c4ae9b32d3b0ceecda88d", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0NDkxMCwiaWF0IjoxNjc5NDM1MzEwLCJqdGkiOiJlYTNmNzEwNWRiOWM0YWU5YjMyZDNiMGNlZWNkYTg4ZCIsInVzZXJfaWQiOjE2fQ.2MZq4Ga59WAki1DhEE7zaSSdG3JpyWLM4HVU4hAdatM", - "created_at": "2023-03-21T21:48:30.315Z", - "expires_at": "2023-04-04T21:48:30Z" + "user": [ + "adam@test.com" + ], + "jti": "ea3f7105db9c4ae9b32d3b0ceecda88d", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MDY0NDkxMCwiaWF0IjoxNjc5NDM1MzEwLCJqdGkiOiJlYTNmNzEwNWRiOWM0YWU5YjMyZDNiMGNlZWNkYTg4ZCIsInVzZXJfaWQiOjE2fQ.2MZq4Ga59WAki1DhEE7zaSSdG3JpyWLM4HVU4hAdatM", + "created_at": "2023-03-21T21:48:30.315Z", + "expires_at": "2023-04-04T21:48:30Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 34, "fields": { - "user": null, - "jti": "9f80b37288c647ecbfb7b10186a1f089", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzEyMzk1MCwiaWF0IjoxNjgxOTE0MzUwLCJqdGkiOiI5ZjgwYjM3Mjg4YzY0N2VjYmZiN2IxMDE4NmExZjA4OSIsInVzZXJfaWQiOjIyfQ.t_CR_oTjr7QtSheatUHZVSx6N86_6mUjCI0fDBOI4bA", - "created_at": null, - "expires_at": "2023-05-03T14:25:50Z" + "user": null, + "jti": "9f80b37288c647ecbfb7b10186a1f089", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzEyMzk1MCwiaWF0IjoxNjgxOTE0MzUwLCJqdGkiOiI5ZjgwYjM3Mjg4YzY0N2VjYmZiN2IxMDE4NmExZjA4OSIsInVzZXJfaWQiOjIyfQ.t_CR_oTjr7QtSheatUHZVSx6N86_6mUjCI0fDBOI4bA", + "created_at": null, + "expires_at": "2023-05-03T14:25:50Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 35, "fields": { - "user": [ - "admin@test.com" - ], - "jti": "d266ea7deb4841c785e30671ab58305d", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0ODM2MywiaWF0IjoxNjgxOTM4NzYzLCJqdGkiOiJkMjY2ZWE3ZGViNDg0MWM3ODVlMzA2NzFhYjU4MzA1ZCIsInVzZXJfaWQiOjIyfQ.xaQM7YuHnX351zrPUFDHbGnI3qPdSgjWiaF7RoFhttI", - "created_at": "2023-04-19T21:12:43.109Z", - "expires_at": "2023-05-03T21:12:43Z" + "user": [ + "admin@test.com" + ], + "jti": "d266ea7deb4841c785e30671ab58305d", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0ODM2MywiaWF0IjoxNjgxOTM4NzYzLCJqdGkiOiJkMjY2ZWE3ZGViNDg0MWM3ODVlMzA2NzFhYjU4MzA1ZCIsInVzZXJfaWQiOjIyfQ.xaQM7YuHnX351zrPUFDHbGnI3qPdSgjWiaF7RoFhttI", + "created_at": "2023-04-19T21:12:43.109Z", + "expires_at": "2023-05-03T21:12:43Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 36, "fields": { - "user": null, - "jti": "ad334926ec58460f95c3f5ed6bce4b70", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0NTgyMSwiaWF0IjoxNjgxOTM2MjIxLCJqdGkiOiJhZDMzNDkyNmVjNTg0NjBmOTVjM2Y1ZWQ2YmNlNGI3MCIsInVzZXJfaWQiOjIyfQ.20pmj0RkoDXo-sdu_QkhHnxJmlZUwmkciWKrOgijmTU", - "created_at": null, - "expires_at": "2023-05-03T20:30:21Z" + "user": null, + "jti": "ad334926ec58460f95c3f5ed6bce4b70", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE0NTgyMSwiaWF0IjoxNjgxOTM2MjIxLCJqdGkiOiJhZDMzNDkyNmVjNTg0NjBmOTVjM2Y1ZWQ2YmNlNGI3MCIsInVzZXJfaWQiOjIyfQ.20pmj0RkoDXo-sdu_QkhHnxJmlZUwmkciWKrOgijmTU", + "created_at": null, + "expires_at": "2023-05-03T20:30:21Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 37, "fields": { - "user": null, - "jti": "ecaaa26ce5fd42b9b1f81b5998bd3a47", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE1MTk1NCwiaWF0IjoxNjgxOTQyMzU0LCJqdGkiOiJlY2FhYTI2Y2U1ZmQ0MmI5YjFmODFiNTk5OGJkM2E0NyIsInVzZXJfaWQiOjIyfQ.DrG81k6MCcHkrT9OhIpy__1JURJDbpf1gEusW67sNYY", - "created_at": null, - "expires_at": "2023-05-03T22:12:34Z" + "user": null, + "jti": "ecaaa26ce5fd42b9b1f81b5998bd3a47", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE1MTk1NCwiaWF0IjoxNjgxOTQyMzU0LCJqdGkiOiJlY2FhYTI2Y2U1ZmQ0MmI5YjFmODFiNTk5OGJkM2E0NyIsInVzZXJfaWQiOjIyfQ.DrG81k6MCcHkrT9OhIpy__1JURJDbpf1gEusW67sNYY", + "created_at": null, + "expires_at": "2023-05-03T22:12:34Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 38, "fields": { - "user": [ - "admin@test.com" - ], - "jti": "36e30e1f79644b258be2ef64d99cedf0", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4Nzg5OSwiaWF0IjoxNjgxOTc4Mjk5LCJqdGkiOiIzNmUzMGUxZjc5NjQ0YjI1OGJlMmVmNjRkOTljZWRmMCIsInVzZXJfaWQiOjIyfQ.f7M6fSAJY_ysw4DJklVSKRLXwl1PZP7n2LcNgS_SnK4", - "created_at": "2023-04-20T08:11:39.511Z", - "expires_at": "2023-05-04T08:11:39Z" + "user": [ + "admin@test.com" + ], + "jti": "36e30e1f79644b258be2ef64d99cedf0", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4Nzg5OSwiaWF0IjoxNjgxOTc4Mjk5LCJqdGkiOiIzNmUzMGUxZjc5NjQ0YjI1OGJlMmVmNjRkOTljZWRmMCIsInVzZXJfaWQiOjIyfQ.f7M6fSAJY_ysw4DJklVSKRLXwl1PZP7n2LcNgS_SnK4", + "created_at": "2023-04-20T08:11:39.511Z", + "expires_at": "2023-05-04T08:11:39Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 39, "fields": { - "user": null, - "jti": "145872994e244255a65a3f49b2df72a8", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4NzI3OSwiaWF0IjoxNjgxOTc3Njc5LCJqdGkiOiIxNDU4NzI5OTRlMjQ0MjU1YTY1YTNmNDliMmRmNzJhOCIsInVzZXJfaWQiOjIyfQ.YN3kOfCZqPvP0QpaxhfCuurY_o5M7pJbWFW6BQz-MPQ", - "created_at": null, - "expires_at": "2023-05-04T08:01:19Z" + "user": null, + "jti": "145872994e244255a65a3f49b2df72a8", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE4NzI3OSwiaWF0IjoxNjgxOTc3Njc5LCJqdGkiOiIxNDU4NzI5OTRlMjQ0MjU1YTY1YTNmNDliMmRmNzJhOCIsInVzZXJfaWQiOjIyfQ.YN3kOfCZqPvP0QpaxhfCuurY_o5M7pJbWFW6BQz-MPQ", + "created_at": null, + "expires_at": "2023-05-04T08:01:19Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 40, "fields": { - "user": [ - "sylvian@test.com" - ], - "jti": "a1b7f07b8dd54f3390e5b0de93935797", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5ODg2MCwiaWF0IjoxNjgxOTg5MjYwLCJqdGkiOiJhMWI3ZjA3YjhkZDU0ZjMzOTBlNWIwZGU5MzkzNTc5NyIsInVzZXJfaWQiOjV9.RSIgMlFh2MPk0GBxo9j54fbE46swIYoPgZ87t-SOqBU", - "created_at": "2023-04-20T11:14:20.839Z", - "expires_at": "2023-05-04T11:14:20Z" + "user": [ + "sylvian@test.com" + ], + "jti": "a1b7f07b8dd54f3390e5b0de93935797", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5ODg2MCwiaWF0IjoxNjgxOTg5MjYwLCJqdGkiOiJhMWI3ZjA3YjhkZDU0ZjMzOTBlNWIwZGU5MzkzNTc5NyIsInVzZXJfaWQiOjV9.RSIgMlFh2MPk0GBxo9j54fbE46swIYoPgZ87t-SOqBU", + "created_at": "2023-04-20T11:14:20.839Z", + "expires_at": "2023-05-04T11:14:20Z" } -}, -{ + }, + { "model": "token_blacklist.outstandingtoken", "pk": 41, "fields": { - "user": [ - "sylvian@test.com" - ], - "jti": "df903eaa817843df91b41d86d0e587df", - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5OTU1NSwiaWF0IjoxNjgxOTg5OTU1LCJqdGkiOiJkZjkwM2VhYTgxNzg0M2RmOTFiNDFkODZkMGU1ODdkZiIsInVzZXJfaWQiOjV9.u3IaCXSI3a0u9-1RBL9BO8uY2N0E_HhrZYtLKMx6DVk", - "created_at": "2023-04-20T11:25:55.285Z", - "expires_at": "2023-05-04T11:25:55Z" + "user": [ + "sylvian@test.com" + ], + "jti": "df903eaa817843df91b41d86d0e587df", + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTY4MzE5OTU1NSwiaWF0IjoxNjgxOTg5OTU1LCJqdGkiOiJkZjkwM2VhYTgxNzg0M2RmOTFiNDFkODZkMGU1ODdkZiIsInVzZXJfaWQiOjV9.u3IaCXSI3a0u9-1RBL9BO8uY2N0E_HhrZYtLKMx6DVk", + "created_at": "2023-04-20T11:25:55.285Z", + "expires_at": "2023-05-04T11:25:55Z" } -}, -{ + }, + { "model": "account.emailaddress", "pk": 7, "fields": { - "user": [ - "sylvie@test.com" - ], - "email": "sylvie@test.com", - "verified": false, - "primary": true + "user": [ + "sylvie@test.com" + ], + "email": "sylvie@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 8, "fields": { - "user": [ - "sydney@test.com" - ], - "email": "sydney@test.com", - "verified": false, - "primary": true + "user": [ + "sydney@test.com" + ], + "email": "sydney@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 9, "fields": { - "user": [ - "sylvano@test.com" - ], - "email": "sylvano@test.com", - "verified": false, - "primary": true + "user": [ + "sylvano@test.com" + ], + "email": "sylvano@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 10, "fields": { - "user": [ - "sylke@test.com" - ], - "email": "sylke@test.com", - "verified": false, - "primary": true + "user": [ + "sylke@test.com" + ], + "email": "sylke@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 11, "fields": { - "user": [ - "sylvian@test.com" - ], - "email": "synthia@test.com", - "verified": false, - "primary": true + "user": [ + "sylvian@test.com" + ], + "email": "synthia@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 12, "fields": { - "user": [ - "stijn@test.com" - ], - "email": "stijn@test.com", - "verified": false, - "primary": true + "user": [ + "stijn@test.com" + ], + "email": "stijn@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 13, "fields": { - "user": [ - "stef@test.com" - ], - "email": "stef@test.com", - "verified": false, - "primary": true + "user": [ + "stef@test.com" + ], + "email": "stef@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 14, "fields": { - "user": [ - "stephan@test.com" - ], - "email": "stephan@test.com", - "verified": false, - "primary": true + "user": [ + "stephan@test.com" + ], + "email": "stephan@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 15, "fields": { - "user": [ - "steven@test.com" - ], - "email": "steven@test.com", - "verified": false, - "primary": true + "user": [ + "steven@test.com" + ], + "email": "steven@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 16, "fields": { - "user": [ - "sten@test.com" - ], - "email": "sten@test.com", - "verified": false, - "primary": true + "user": [ + "sten@test.com" + ], + "email": "sten@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 17, "fields": { - "user": [ - "sterre@test.com" - ], - "email": "sterre@test.com", - "verified": false, - "primary": true + "user": [ + "sterre@test.com" + ], + "email": "sterre@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 18, "fields": { - "user": [ - "stella@test.com" - ], - "email": "stella@test.com", - "verified": false, - "primary": true + "user": [ + "stella@test.com" + ], + "email": "stella@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 19, "fields": { - "user": [ - "stefanie@test.com" - ], - "email": "stefanie@test.com", - "verified": false, - "primary": true + "user": [ + "stefanie@test.com" + ], + "email": "stefanie@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 20, "fields": { - "user": [ - "stacey@test.com" - ], - "email": "stacey@test.com", - "verified": false, - "primary": true + "user": [ + "stacey@test.com" + ], + "email": "stacey@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 21, "fields": { - "user": [ - "stanford@test.com" - ], - "email": "stanford@test.com", - "verified": false, - "primary": true + "user": [ + "stanford@test.com" + ], + "email": "stanford@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 22, "fields": { - "user": [ - "adam@test.com" - ], - "email": "adam@test.com", - "verified": false, - "primary": true + "user": [ + "adam@test.com" + ], + "email": "adam@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 23, "fields": { - "user": [ - "adriana@test.com" - ], - "email": "adriana@test.com", - "verified": false, - "primary": true + "user": [ + "adriana@test.com" + ], + "email": "adriana@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 24, "fields": { - "user": [ - "adelynn@test.com" - ], - "email": "adelynn@test.com", - "verified": false, - "primary": true + "user": [ + "adelynn@test.com" + ], + "email": "adelynn@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 25, "fields": { - "user": [ - "suzanne@test.com" - ], - "email": "suzanne@test.com", - "verified": false, - "primary": true + "user": [ + "suzanne@test.com" + ], + "email": "suzanne@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 26, "fields": { - "user": [ - "suzy@test.com" - ], - "email": "suzy@test.com", - "verified": false, - "primary": true + "user": [ + "suzy@test.com" + ], + "email": "suzy@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "account.emailaddress", "pk": 27, "fields": { - "user": [ - "suffried@test.com" - ], - "email": "sunny@test.com", - "verified": false, - "primary": true + "user": [ + "suffried@test.com" + ], + "email": "sunny@test.com", + "verified": false, + "primary": true } -}, -{ + }, + { "model": "admin.logentry", "pk": 27, "fields": { - "action_time": "2023-03-08T14:39:26.117Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "30", - "object_repr": "sunny@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:39:26.117Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "30", + "object_repr": "sunny@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 28, "fields": { - "action_time": "2023-03-08T14:39:37.107Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "29", - "object_repr": "suzy@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:39:37.107Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "29", + "object_repr": "suzy@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 29, "fields": { - "action_time": "2023-03-08T14:40:29.816Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "29", - "object_repr": "suzy@test.com (SS)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T14:40:29.816Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "29", + "object_repr": "suzy@test.com (SS)", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 30, "fields": { - "action_time": "2023-03-08T14:40:45.033Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "28", - "object_repr": "suzanne@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:40:45.033Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "28", + "object_repr": "suzanne@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 31, "fields": { - "action_time": "2023-03-08T14:42:50.346Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "27", - "object_repr": "adelynn@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:42:50.346Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "27", + "object_repr": "adelynn@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 32, "fields": { - "action_time": "2023-03-08T14:43:07.577Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "26", - "object_repr": "adriana@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:43:07.577Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "26", + "object_repr": "adriana@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 33, "fields": { - "action_time": "2023-03-08T14:43:29.528Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "25", - "object_repr": "adam@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:43:29.528Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "25", + "object_repr": "adam@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Superuser status\", \"Is staff\", \"first_name\", \"last_name\", \"Phone number\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 34, "fields": { - "action_time": "2023-03-08T14:43:59.200Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "24", - "object_repr": "stanford@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:43:59.200Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "24", + "object_repr": "stanford@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 35, "fields": { - "action_time": "2023-03-08T14:44:20.621Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "31", - "object_repr": "joe@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:44:20.621Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "31", + "object_repr": "joe@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 36, "fields": { - "action_time": "2023-03-08T14:45:12.079Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "30", - "object_repr": "suffried@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:12.079Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "30", + "object_repr": "suffried@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 37, "fields": { - "action_time": "2023-03-08T14:45:18.068Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "29", - "object_repr": "suzy@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:18.068Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "29", + "object_repr": "suzy@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 38, "fields": { - "action_time": "2023-03-08T14:45:24.900Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "28", - "object_repr": "suzanne@test.com (SS)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:24.900Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "28", + "object_repr": "suzanne@test.com (SS)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 39, "fields": { - "action_time": "2023-03-08T14:45:30.492Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "27", - "object_repr": "adelynn@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:30.492Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "27", + "object_repr": "adelynn@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 40, "fields": { - "action_time": "2023-03-08T14:45:34.892Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "26", - "object_repr": "adriana@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:34.892Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "26", + "object_repr": "adriana@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 41, "fields": { - "action_time": "2023-03-08T14:45:39.096Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "25", - "object_repr": "adam@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:39.096Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "25", + "object_repr": "adam@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Region\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 42, "fields": { - "action_time": "2023-03-08T14:45:43.026Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "24", - "object_repr": "stanford@test.com (ST)", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T14:45:43.026Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "24", + "object_repr": "stanford@test.com (ST)", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 43, "fields": { - "action_time": "2023-03-08T14:45:57.014Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "23", - "object_repr": "stacey@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:45:57.014Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "23", + "object_repr": "stacey@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 44, "fields": { - "action_time": "2023-03-08T14:46:12.485Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "22", - "object_repr": "stefanie@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:12.485Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "22", + "object_repr": "stefanie@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 45, "fields": { - "action_time": "2023-03-08T14:46:29.160Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "21", - "object_repr": "stella@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:29.160Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "21", + "object_repr": "stella@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 46, "fields": { - "action_time": "2023-03-08T14:46:37.207Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "20", - "object_repr": "sterre@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:37.207Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "20", + "object_repr": "sterre@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 47, "fields": { - "action_time": "2023-03-08T14:46:47.188Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "19", - "object_repr": "sten@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:46:47.188Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "19", + "object_repr": "sten@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 48, "fields": { - "action_time": "2023-03-08T14:47:22.359Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "18", - "object_repr": "steven@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:47:22.359Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "18", + "object_repr": "steven@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 49, "fields": { - "action_time": "2023-03-08T14:48:21.802Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "16", - "object_repr": "stef@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:48:21.802Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "16", + "object_repr": "stef@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 50, "fields": { - "action_time": "2023-03-08T14:48:39.335Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "17", - "object_repr": "stephan@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:48:39.335Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "17", + "object_repr": "stephan@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 51, "fields": { - "action_time": "2023-03-08T14:49:35.174Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "14", - "object_repr": "sylvian@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:49:35.174Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "14", + "object_repr": "sylvian@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Email address\", \"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 52, "fields": { - "action_time": "2023-03-08T14:49:45.732Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "15", - "object_repr": "stijn@test.com (ST)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:49:45.732Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "15", + "object_repr": "stijn@test.com (ST)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 53, "fields": { - "action_time": "2023-03-08T14:49:56.248Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "13", - "object_repr": "sylke@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:49:56.248Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "13", + "object_repr": "sylke@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 54, "fields": { - "action_time": "2023-03-08T14:50:12.704Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "12", - "object_repr": "sylvano@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:50:12.704Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "12", + "object_repr": "sylvano@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 55, "fields": { - "action_time": "2023-03-08T14:50:25.896Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "11", - "object_repr": "sydney@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:50:25.896Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "11", + "object_repr": "sydney@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 56, "fields": { - "action_time": "2023-03-08T14:50:49.506Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "10", - "object_repr": "sylvie@test.com (SY)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:50:49.506Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "10", + "object_repr": "sylvie@test.com (SY)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"first_name\", \"last_name\", \"Phone number\", \"Region\", \"Role\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 57, "fields": { - "action_time": "2023-03-08T14:52:39.891Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "user" - ], - "object_id": "31", - "object_repr": "admin@test.com (AD)", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]" - } -}, -{ + "action_time": "2023-03-08T14:52:39.891Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "user" + ], + "object_id": "31", + "object_repr": "admin@test.com (AD)", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Email address\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 58, "fields": { - "action_time": "2023-03-08T14:58:44.752Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "3", - "object_repr": "UGent Campussen in regio Gent", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T14:58:44.752Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "3", + "object_repr": "UGent Campussen in regio Gent", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 59, "fields": { - "action_time": "2023-03-08T15:00:27.928Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "4", - "object_repr": "UAntwerpen Campussen in regio Antwerpen", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:00:27.928Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "4", + "object_repr": "UAntwerpen Campussen in regio Antwerpen", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 60, "fields": { - "action_time": "2023-03-08T15:01:59.960Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "3", - "object_repr": "Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:01:59.960Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "3", + "object_repr": "Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 61, "fields": { - "action_time": "2023-03-08T15:02:48.962Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "4", - "object_repr": "Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:02:48.962Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "4", + "object_repr": "Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 62, "fields": { - "action_time": "2023-03-08T15:03:39.204Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "5", - "object_repr": "Middelheimlaan 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:03:39.204Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "5", + "object_repr": "Middelheimlaan 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 63, "fields": { - "action_time": "2023-03-08T15:04:14.499Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "6", - "object_repr": "Prinsstraat 13, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:04:14.499Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "6", + "object_repr": "Prinsstraat 13, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 64, "fields": { - "action_time": "2023-03-08T15:04:25.788Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "6", - "object_repr": "Prinsstraat 13, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T15:04:25.788Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "6", + "object_repr": "Prinsstraat 13, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 65, "fields": { - "action_time": "2023-03-08T15:08:08.606Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "3", - "object_repr": "Universiteitsplein 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:08.606Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "3", + "object_repr": "Universiteitsplein 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 66, "fields": { - "action_time": "2023-03-08T15:08:19.377Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "4", - "object_repr": "Groenenborgerlaan 171, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:19.377Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "4", + "object_repr": "Groenenborgerlaan 171, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 67, "fields": { - "action_time": "2023-03-08T15:08:27.356Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "5", - "object_repr": "Middelheimlaan 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:27.356Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "5", + "object_repr": "Middelheimlaan 1, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 68, "fields": { - "action_time": "2023-03-08T15:08:35.739Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "6", - "object_repr": "Prinsstraat 13, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:08:35.739Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "6", + "object_repr": "Prinsstraat 13, Antwerpen 2000 op ronde UAntwerpen Campussen in regio Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 69, "fields": { - "action_time": "2023-03-08T15:17:18.139Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "7", - "object_repr": "Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T15:17:18.139Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "7", + "object_repr": "Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 70, "fields": { - "action_time": "2023-03-08T16:00:24.947Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "8", - "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:00:24.947Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "8", + "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 71, "fields": { - "action_time": "2023-03-08T16:00:58.312Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "9", - "object_repr": "Tweekerkenstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:00:58.312Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "9", + "object_repr": "Tweekerkenstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 72, "fields": { - "action_time": "2023-03-08T16:01:24.381Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "10", - "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:01:24.381Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "10", + "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 73, "fields": { - "action_time": "2023-03-08T16:01:35.072Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "7", - "object_repr": "Krijgslaan 281, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:01:35.072Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "7", + "object_repr": "Krijgslaan 281, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 74, "fields": { - "action_time": "2023-03-08T16:02:06.290Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "7", - "object_repr": "Krijgslaan 281, Gent 9000 op ronde UGent Campussen in regio Gent, index: 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:02:06.290Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "7", + "object_repr": "Krijgslaan 281, Gent 9000 op ronde UGent Campussen in regio Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 75, "fields": { - "action_time": "2023-03-08T16:08:52.700Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "8", - "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000 op ronde UGent Campussen in regio Gent, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:08:52.700Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "8", + "object_repr": "Sint-Pietersnieuwstraat 33, Gent 9000 op ronde UGent Campussen in regio Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 76, "fields": { - "action_time": "2023-03-08T16:09:02.005Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "9", - "object_repr": "Tweekerkenstraat 2, Gent 9000 op ronde UGent Campussen in regio Gent, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:09:02.005Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "9", + "object_repr": "Tweekerkenstraat 2, Gent 9000 op ronde UGent Campussen in regio Gent, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 77, "fields": { - "action_time": "2023-03-08T16:09:12.402Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "10", - "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000 op ronde UGent Campussen in regio Gent, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:09:12.402Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "10", + "object_repr": "Karel Lodewijk Ledeganckstraat 35, Gent 9000 op ronde UGent Campussen in regio Gent, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 78, "fields": { - "action_time": "2023-03-08T16:12:03.299Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "11", - "object_repr": "Velstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:12:03.299Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "11", + "object_repr": "Velstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 79, "fields": { - "action_time": "2023-03-08T16:12:21.051Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 1, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Client number\", \"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:12:21.051Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 1, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Client number\", \"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 80, "fields": { - "action_time": "2023-03-08T16:16:40.922Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "11", - "object_repr": "Velstraat 2, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:16:40.922Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "11", + "object_repr": "Velstraat 2, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 81, "fields": { - "action_time": "2023-03-08T16:16:45.022Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 2, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:16:45.022Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 2, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 82, "fields": { - "action_time": "2023-03-08T16:20:59.890Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 1, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:20:59.890Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 1, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 83, "fields": { - "action_time": "2023-03-08T16:21:25.140Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "12", - "object_repr": "Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:21:25.140Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "12", + "object_repr": "Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 84, "fields": { - "action_time": "2023-03-08T16:21:52.660Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "13", - "object_repr": "Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:21:52.660Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "13", + "object_repr": "Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 85, "fields": { - "action_time": "2023-03-08T16:22:19.176Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:22:19.176Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 86, "fields": { - "action_time": "2023-03-08T16:25:43.960Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:25:43.960Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 87, "fields": { - "action_time": "2023-03-08T16:26:04.709Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T16:26:04.709Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 88, "fields": { - "action_time": "2023-03-08T16:26:46.183Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "11", - "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T16:26:46.183Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "11", + "object_repr": "Veldstraat 2, Gent 9000 op ronde Centrum in regio Gent, index: 2", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 89, "fields": { - "action_time": "2023-03-08T16:26:55.424Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "2", - "object_repr": "Veldstraat 1, Gent 9000", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T16:26:55.424Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "2", + "object_repr": "Veldstraat 1, Gent 9000", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 90, "fields": { - "action_time": "2023-03-08T16:28:45.475Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "12", - "object_repr": "Veldstraat 3, Gent 9000 op ronde Centrum in regio Gent, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:28:45.475Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "12", + "object_repr": "Veldstraat 3, Gent 9000 op ronde Centrum in regio Gent, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 91, "fields": { - "action_time": "2023-03-08T16:28:54.410Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "13", - "object_repr": "Veldstraat 4, Gent 9000 op ronde Centrum in regio Gent, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:28:54.410Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "13", + "object_repr": "Veldstraat 4, Gent 9000 op ronde Centrum in regio Gent, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 92, "fields": { - "action_time": "2023-03-08T16:30:07.611Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "1", - "object_repr": "Grote Markt 1, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Syndic\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:30:07.611Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "1", + "object_repr": "Grote Markt 1, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"House number\", \"Syndic\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 93, "fields": { - "action_time": "2023-03-08T16:30:34.261Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "14", - "object_repr": "Grote Markt 2, Antwerpen 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:30:34.261Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "14", + "object_repr": "Grote Markt 2, Antwerpen 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 94, "fields": { - "action_time": "2023-03-08T16:30:59.258Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "15", - "object_repr": "Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:30:59.258Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "15", + "object_repr": "Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 95, "fields": { - "action_time": "2023-03-08T16:31:08.274Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "14", - "object_repr": "Grote Markt 2, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Postal code\"]}}]" - } -}, -{ + "action_time": "2023-03-08T16:31:08.274Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "14", + "object_repr": "Grote Markt 2, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Postal code\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 96, "fields": { - "action_time": "2023-03-08T16:31:44.676Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "16", - "object_repr": "Grote Markt 4, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:31:44.676Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "16", + "object_repr": "Grote Markt 4, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 97, "fields": { - "action_time": "2023-03-08T16:31:55.261Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "14", - "object_repr": "Grote Markt 2, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 2", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:31:55.261Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "14", + "object_repr": "Grote Markt 2, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 98, "fields": { - "action_time": "2023-03-08T16:32:01.898Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "15", - "object_repr": "Grote Markt 3, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:01.898Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "15", + "object_repr": "Grote Markt 3, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 99, "fields": { - "action_time": "2023-03-08T16:32:09.892Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingontour" - ], - "object_id": "16", - "object_repr": "Grote Markt 4, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 4", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:09.892Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingontour" + ], + "object_id": "16", + "object_repr": "Grote Markt 4, Antwerpen 2000 op ronde Grote Markt in regio Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 100, "fields": { - "action_time": "2023-03-08T16:32:37.550Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "1", - "object_repr": "GFT op 2023-03-08 voor 1", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:37.550Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "1", + "object_repr": "GFT op 2023-03-08 voor 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 101, "fields": { - "action_time": "2023-03-08T16:32:49.793Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "2", - "object_repr": "GLS op 2023-03-09 voor 12", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:32:49.793Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "2", + "object_repr": "GLS op 2023-03-09 voor 12", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 102, "fields": { - "action_time": "2023-03-08T16:33:14.208Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "3", - "object_repr": "GRF op 2023-03-11 voor 3", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:33:14.208Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "3", + "object_repr": "GRF op 2023-03-11 voor 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 103, "fields": { - "action_time": "2023-03-08T16:33:21.994Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "4", - "object_repr": "PMD op 2023-03-15 voor 10", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:33:21.994Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "4", + "object_repr": "PMD op 2023-03-15 voor 10", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 104, "fields": { - "action_time": "2023-03-08T16:33:56.022Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "5", - "object_repr": "PAP op 2023-03-17 voor 16", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T16:33:56.022Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "5", + "object_repr": "PAP op 2023-03-17 voor 16", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 105, "fields": { - "action_time": "2023-03-08T17:01:50.343Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "1", - "object_repr": "GFT op 2023-03-08 voor Grote Markt 1, Antwerpen 2000", - "action_flag": 2, - "change_message": "[]" - } -}, -{ + "action_time": "2023-03-08T17:01:50.343Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "1", + "object_repr": "GFT op 2023-03-08 voor Grote Markt 1, Antwerpen 2000", + "action_flag": 2, + "change_message": "[]" + } + }, + { "model": "admin.logentry", "pk": 106, "fields": { - "action_time": "2023-03-08T17:22:53.560Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "6", - "object_repr": "PMD op 2023-03-10 voor Grote Markt 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:22:53.560Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "6", + "object_repr": "PMD op 2023-03-10 voor Grote Markt 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 107, "fields": { - "action_time": "2023-03-08T17:23:21.034Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "7", - "object_repr": "RES op 2023-03-22 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:23:21.034Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "7", + "object_repr": "RES op 2023-03-22 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 108, "fields": { - "action_time": "2023-03-08T17:23:32.286Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "8", - "object_repr": "PAP op 2023-03-19 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:23:32.286Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "8", + "object_repr": "PAP op 2023-03-19 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 109, "fields": { - "action_time": "2023-03-08T17:23:48.861Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "9", - "object_repr": "PAP op 2023-03-08 voor Grote Markt 2, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:23:48.861Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "9", + "object_repr": "PAP op 2023-03-08 voor Grote Markt 2, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 110, "fields": { - "action_time": "2023-03-08T17:24:03.997Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "10", - "object_repr": "KER op 2023-03-09 voor Grote Markt 2, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:03.997Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "10", + "object_repr": "KER op 2023-03-09 voor Grote Markt 2, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 111, "fields": { - "action_time": "2023-03-08T17:24:13.531Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "8", - "object_repr": "PAP op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:13.531Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "8", + "object_repr": "PAP op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 112, "fields": { - "action_time": "2023-03-08T17:24:17.210Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "7", - "object_repr": "RES op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:17.210Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "7", + "object_repr": "RES op 2023-03-09 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 113, "fields": { - "action_time": "2023-03-08T17:24:22.493Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "8", - "object_repr": "PAP op 2023-03-08 voor Grote Markt 3, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:24:22.493Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "8", + "object_repr": "PAP op 2023-03-08 voor Grote Markt 3, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 114, "fields": { - "action_time": "2023-03-08T17:24:45.436Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "2", - "object_repr": "GLS op 2023-03-09 voor Veldstraat 3, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-03-08T17:24:45.436Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "2", + "object_repr": "GLS op 2023-03-09 voor Veldstraat 3, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 115, "fields": { - "action_time": "2023-03-08T17:24:46.002Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "3", - "object_repr": "GRF op 2023-03-11 voor Universiteitsplein 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-03-08T17:24:46.002Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "3", + "object_repr": "GRF op 2023-03-11 voor Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 116, "fields": { - "action_time": "2023-03-08T17:24:46.573Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "4", - "object_repr": "PMD op 2023-03-15 voor Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-03-08T17:24:46.573Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "4", + "object_repr": "PMD op 2023-03-15 voor Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 117, "fields": { - "action_time": "2023-03-08T17:25:04.860Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "5", - "object_repr": "PAP op 2023-03-08 voor Grote Markt 4, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:04.860Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "5", + "object_repr": "PAP op 2023-03-08 voor Grote Markt 4, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 118, "fields": { - "action_time": "2023-03-08T17:25:13.574Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "11", - "object_repr": "GLS op 2023-03-09 voor Grote Markt 4, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:13.574Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "11", + "object_repr": "GLS op 2023-03-09 voor Grote Markt 4, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 119, "fields": { - "action_time": "2023-03-08T17:25:32.768Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "12", - "object_repr": "GFT op 2023-03-08 voor Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:32.768Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "12", + "object_repr": "GFT op 2023-03-08 voor Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 120, "fields": { - "action_time": "2023-03-08T17:25:39.351Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "13", - "object_repr": "KER op 2023-03-09 voor Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:39.351Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "13", + "object_repr": "KER op 2023-03-09 voor Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 121, "fields": { - "action_time": "2023-03-08T17:25:50.695Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "14", - "object_repr": "PMD op 2023-03-08 voor Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:25:50.695Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "14", + "object_repr": "PMD op 2023-03-08 voor Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 122, "fields": { - "action_time": "2023-03-08T17:26:00.684Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "15", - "object_repr": "GLS op 2023-03-09 voor Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:00.684Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "15", + "object_repr": "GLS op 2023-03-09 voor Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 123, "fields": { - "action_time": "2023-03-08T17:26:10.633Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "16", - "object_repr": "PAP op 2023-03-08 voor Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:10.633Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "16", + "object_repr": "PAP op 2023-03-08 voor Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 124, "fields": { - "action_time": "2023-03-08T17:26:17.012Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "17", - "object_repr": "PMD op 2023-03-09 voor Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:17.012Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "17", + "object_repr": "PMD op 2023-03-09 voor Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 125, "fields": { - "action_time": "2023-03-08T17:26:27.293Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "18", - "object_repr": "GRF op 2023-03-08 voor Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:27.293Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "18", + "object_repr": "GRF op 2023-03-08 voor Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 126, "fields": { - "action_time": "2023-03-08T17:26:35.922Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "19", - "object_repr": "KER op 2023-03-09 voor Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:35.922Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "19", + "object_repr": "KER op 2023-03-09 voor Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 127, "fields": { - "action_time": "2023-03-08T17:26:52.792Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "20", - "object_repr": "GFT op 2023-03-08 voor Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:52.792Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "20", + "object_repr": "GFT op 2023-03-08 voor Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 128, "fields": { - "action_time": "2023-03-08T17:26:59.304Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "21", - "object_repr": "GRF op 2023-03-09 voor Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:26:59.304Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "21", + "object_repr": "GRF op 2023-03-09 voor Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 129, "fields": { - "action_time": "2023-03-08T17:27:07.374Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "22", - "object_repr": "GRF op 2023-03-08 voor Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:07.374Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "22", + "object_repr": "GRF op 2023-03-08 voor Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 130, "fields": { - "action_time": "2023-03-08T17:27:15.700Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "23", - "object_repr": "PAP op 2023-03-09 voor Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:15.700Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "23", + "object_repr": "PAP op 2023-03-09 voor Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 131, "fields": { - "action_time": "2023-03-08T17:27:21.716Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "24", - "object_repr": "PMD op 2023-03-08 voor Tweekerkenstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:21.716Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "24", + "object_repr": "PMD op 2023-03-08 voor Tweekerkenstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 132, "fields": { - "action_time": "2023-03-08T17:27:27.642Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "25", - "object_repr": "RES op 2023-03-09 voor Tweekerkenstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:27.642Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "25", + "object_repr": "RES op 2023-03-09 voor Tweekerkenstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 133, "fields": { - "action_time": "2023-03-08T17:27:34.788Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "26", - "object_repr": "PAP op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:34.788Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "26", + "object_repr": "PAP op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 134, "fields": { - "action_time": "2023-03-08T17:27:39.461Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "27", - "object_repr": "GLS op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:39.461Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "27", + "object_repr": "GLS op 2023-03-08 voor Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 135, "fields": { - "action_time": "2023-03-08T17:27:45.463Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "28", - "object_repr": "GLS op 2023-03-08 voor Prinsstraat 13, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:45.463Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "28", + "object_repr": "GLS op 2023-03-08 voor Prinsstraat 13, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 136, "fields": { - "action_time": "2023-03-08T17:27:53.937Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "29", - "object_repr": "KER op 2023-03-09 voor Prinsstraat 13, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:27:53.937Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "29", + "object_repr": "KER op 2023-03-09 voor Prinsstraat 13, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 137, "fields": { - "action_time": "2023-03-08T17:28:00.222Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "30", - "object_repr": "PMD op 2023-03-08 voor Middelheimlaan 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:28:00.222Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "30", + "object_repr": "PMD op 2023-03-08 voor Middelheimlaan 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 138, "fields": { - "action_time": "2023-03-08T17:30:56.771Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "31", - "object_repr": "GRF op 2023-03-09 voor Middelheimlaan 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:30:56.771Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "31", + "object_repr": "GRF op 2023-03-09 voor Middelheimlaan 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 139, "fields": { - "action_time": "2023-03-08T17:31:05.688Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "32", - "object_repr": "GLS op 2023-03-08 voor Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:05.688Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "32", + "object_repr": "GLS op 2023-03-08 voor Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 140, "fields": { - "action_time": "2023-03-08T17:31:11.664Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "33", - "object_repr": "RES op 2023-03-09 voor Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:11.664Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "33", + "object_repr": "RES op 2023-03-09 voor Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 141, "fields": { - "action_time": "2023-03-08T17:31:20.537Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "34", - "object_repr": "PAP op 2023-03-08 voor Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:20.537Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "34", + "object_repr": "PAP op 2023-03-08 voor Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 142, "fields": { - "action_time": "2023-03-08T17:31:26.439Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "35", - "object_repr": "GFT op 2023-03-09 voor Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-08T17:31:26.439Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "35", + "object_repr": "GFT op 2023-03-09 voor Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 154, "fields": { - "action_time": "2023-03-09T12:36:55.073Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "6", - "object_repr": "PMD op 2023-03-09 voor Grote Markt 1, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" - } -}, -{ + "action_time": "2023-03-09T12:36:55.073Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "6", + "object_repr": "PMD op 2023-03-09 voor Grote Markt 1, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Date\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 164, "fields": { - "action_time": "2023-03-21T22:18:39.554Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "region" - ], - "object_id": "3", - "object_repr": "Brugge", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:18:39.554Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "region" + ], + "object_id": "3", + "object_repr": "Brugge", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 165, "fields": { - "action_time": "2023-03-21T22:24:05.620Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "1", - "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:24:05.620Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "1", + "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 166, "fields": { - "action_time": "2023-03-21T22:32:39.799Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "2", - "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:32:39.799Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "2", + "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 167, "fields": { - "action_time": "2023-03-21T22:34:39.055Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "3", - "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:34:39.055Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "3", + "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 168, "fields": { - "action_time": "2023-03-21T22:36:01.119Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "4", - "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:36:01.119Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "4", + "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 169, "fields": { - "action_time": "2023-03-21T22:37:43.102Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "5", - "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:37:43.102Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "5", + "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 170, "fields": { - "action_time": "2023-03-21T22:42:00.338Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "6", - "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:42:00.338Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "6", + "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 171, "fields": { - "action_time": "2023-03-21T22:46:39.905Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "7", - "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:46:39.905Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "7", + "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 172, "fields": { - "action_time": "2023-03-21T22:47:07.799Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "17", - "object_repr": "markt 5, Brugge 8000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" - } -}, -{ + "action_time": "2023-03-21T22:47:07.799Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "17", + "object_repr": "markt 5, Brugge 8000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 173, "fields": { - "action_time": "2023-03-21T22:47:43.442Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "18", - "object_repr": "steenstraat 6, Brugge 8000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" - } -}, -{ + "action_time": "2023-03-21T22:47:43.442Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "18", + "object_repr": "steenstraat 6, Brugge 8000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Street\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 174, "fields": { - "action_time": "2023-03-21T22:48:57.933Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "19", - "object_repr": "'t Zand 2, Brugge 8310", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:48:57.933Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "19", + "object_repr": "'t Zand 2, Brugge 8310", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 175, "fields": { - "action_time": "2023-03-21T22:49:12.262Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "16", - "object_repr": "Grote Markt 4, Antwerpen 2000", - "action_flag": 2, - "change_message": "[{\"changed\": {\"fields\": [\"Name\"]}}]" - } -}, -{ + "action_time": "2023-03-21T22:49:12.262Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "16", + "object_repr": "Grote Markt 4, Antwerpen 2000", + "action_flag": 2, + "change_message": "[{\"changed\": {\"fields\": [\"Name\"]}}]" + } + }, + { "model": "admin.logentry", "pk": 176, "fields": { - "action_time": "2023-03-21T22:52:05.573Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "emailtemplate" - ], - "object_id": "1", - "object_repr": "EmailTemplate object (1)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:52:05.573Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "emailtemplate" + ], + "object_id": "1", + "object_repr": "EmailTemplate object (1)", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 177, "fields": { - "action_time": "2023-03-21T22:54:13.985Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "emailtemplate" - ], - "object_id": "2", - "object_repr": "EmailTemplate object (2)", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:54:13.985Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "emailtemplate" + ], + "object_id": "2", + "object_repr": "EmailTemplate object (2)", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 178, "fields": { - "action_time": "2023-03-21T22:57:41.059Z", - "user": [ - "adam@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "1", - "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 23:57:00+01:00) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-03-21T22:57:41.059Z", + "user": [ + "adam@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "1", + "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 23:57:00+01:00) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 179, + "fields": { + "action_time": "2023-04-01T12:58:51.201Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "1", + "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-01", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 180, + "fields": { + "action_time": "2023-04-01T12:59:01.377Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "2", + "object_repr": "stef@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-01", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 181, + "fields": { + "action_time": "2023-04-01T12:59:15.584Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "3", + "object_repr": "steven@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 182, + "fields": { + "action_time": "2023-04-01T12:59:29.614Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "4", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-11", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 183, + "fields": { + "action_time": "2023-04-01T12:59:49.127Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "5", + "object_repr": "sten@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-11", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 184, + "fields": { + "action_time": "2023-04-01T13:00:04.262Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "6", + "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-24", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 185, + "fields": { + "action_time": "2023-04-01T13:01:08.211Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "7", + "object_repr": "steven@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-27", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 186, + "fields": { + "action_time": "2023-04-01T13:01:20.487Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "8", + "object_repr": "sten@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-22", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 187, + "fields": { + "action_time": "2023-04-01T13:01:34.284Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "9", + "object_repr": "stijn@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-17", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 188, + "fields": { + "action_time": "2023-04-01T13:01:54.436Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "10", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-10", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 189, + "fields": { + "action_time": "2023-04-01T13:02:04.221Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "11", + "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 190, + "fields": { + "action_time": "2023-04-01T13:02:35.265Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "12", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 191, + "fields": { + "action_time": "2023-04-01T13:02:53.286Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "13", + "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 192, + "fields": { + "action_time": "2023-04-01T13:04:14.573Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "14", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-26", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 193, + "fields": { + "action_time": "2023-04-01T13:04:39.964Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "15", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-10", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 194, + "fields": { + "action_time": "2023-04-01T13:05:11.380Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "16", + "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-04", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 195, + "fields": { + "action_time": "2023-04-01T13:05:27.691Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "17", + "object_repr": "sterre@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-16", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 196, + "fields": { + "action_time": "2023-04-01T13:06:08.144Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "1", + "object_repr": "AA for Veldstraat 1, Gent 9000 on tour Tour Centrum in region Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 197, + "fields": { + "action_time": "2023-04-01T13:06:32.588Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "2", + "object_repr": "VE for Groenenborgerlaan 171, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 198, + "fields": { + "action_time": "2023-04-01T13:07:35.410Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "3", + "object_repr": "OP for Tweekerkenstraat 2, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 199, + "fields": { + "action_time": "2023-04-01T13:07:58.217Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "4", + "object_repr": "BI for Veldstraat 1, Gent 9000 on tour Tour Centrum in region Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 200, + "fields": { + "action_time": "2023-04-01T13:08:15.802Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "5", + "object_repr": "VE for Krijgslaan 281, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 1", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 201, + "fields": { + "action_time": "2023-04-01T13:08:28.528Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "6", + "object_repr": "AA for Sint-Pietersnieuwstraat 33, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 202, + "fields": { + "action_time": "2023-04-01T13:08:47.842Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "7", + "object_repr": "AA for Veldstraat 2, Gent 9000 on tour Tour Centrum in region Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 203, + "fields": { + "action_time": "2023-04-01T13:08:59.242Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "8", + "object_repr": "OP for Grote Markt 3, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 204, + "fields": { + "action_time": "2023-04-01T13:09:21.365Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "9", + "object_repr": "BI for Sint-Pietersnieuwstraat 33, Gent 9000 on tour Tour UGent Campussen in region Gent, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 205, + "fields": { + "action_time": "2023-04-01T13:09:34.640Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "10", + "object_repr": "OP for Grote Markt 2, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 2", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 206, + "fields": { + "action_time": "2023-04-01T13:09:53.946Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "11", + "object_repr": "AA for Veldstraat 4, Gent 9000 on tour Tour Centrum in region Gent, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 207, + "fields": { + "action_time": "2023-04-01T13:10:16.570Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "12", + "object_repr": "BI for Prinsstraat 13, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 208, + "fields": { + "action_time": "2023-04-01T13:10:35.670Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "13", + "object_repr": "OP for Grote Markt 4, Antwerpen 2000 on tour Tour Grote Markt in region Antwerpen, index: 4", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 209, + "fields": { + "action_time": "2023-04-01T13:10:58.506Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "14", + "object_repr": "VE for Middelheimlaan 1, Antwerpen 2000 on tour Tour UAntwerpen Campussen in region Antwerpen, index: 3", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 210, + "fields": { + "action_time": "2023-04-19T18:41:05.524Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "18", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 211, "fields": { - "action_time": "2023-04-20T09:00:33.526Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "2", - "object_repr": "Comment: De deur is moeilijk te openen. (2023-04-20 11:00:08+02:00) for Grote Markt 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:00:33.526Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "2", + "object_repr": "Comment: De deur is moeilijk te openen. (2023-04-20 11:00:08+02:00) for Grote Markt 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 212, "fields": { - "action_time": "2023-04-20T09:00:43.199Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "1", - "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 22:57:00+00:00) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:00:43.199Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "1", + "object_repr": "Comment: De containers stonden niet in de kelder, waar ze normaal wel zouden moeten staan. (2023-03-21 22:57:00+00:00) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 213, "fields": { - "action_time": "2023-04-20T09:02:03.877Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "3", - "object_repr": "Comment: De code van de poort is 1234. (2023-04-20 11:01:59+02:00) for Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:02:03.877Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "3", + "object_repr": "Comment: De code van de poort is 1234. (2023-04-20 11:01:59+02:00) for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 214, "fields": { - "action_time": "2023-04-20T09:02:29.752Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "4", - "object_repr": "Comment: De containers staan in verschillende ruimtes. (2023-04-20 11:02:26+02:00) for Universiteitsplein 1, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:02:29.752Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "4", + "object_repr": "Comment: De containers staan in verschillende ruimtes. (2023-04-20 11:02:26+02:00) for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 215, "fields": { - "action_time": "2023-04-20T09:03:01.701Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "5", - "object_repr": "Comment: Je moet langs de achterdeur van het gebouw binnen. (2023-04-20 11:02:54+02:00) for Groenenborgerlaan 171, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:03:01.701Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "5", + "object_repr": "Comment: Je moet langs de achterdeur van het gebouw binnen. (2023-04-20 11:02:54+02:00) for Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 216, "fields": { - "action_time": "2023-04-20T09:03:50.482Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "6", - "object_repr": "Comment: Bel aan bij bewoner op nummer 3, deze laat je binnen. (2023-04-20 11:03:44+02:00) for Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:03:50.482Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "6", + "object_repr": "Comment: Bel aan bij bewoner op nummer 3, deze laat je binnen. (2023-04-20 11:03:44+02:00) for Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 217, "fields": { - "action_time": "2023-04-20T09:04:13.174Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "7", - "object_repr": "Comment: De code van de poort is 5395 (2023-04-20 11:04:09+02:00) for Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:04:13.174Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "7", + "object_repr": "Comment: De code van de poort is 5395 (2023-04-20 11:04:09+02:00) for Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 218, "fields": { - "action_time": "2023-04-20T09:04:41.617Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "8", - "object_repr": "Comment: PMD en REST staan op het gelijkvloers, de rest in de kelder. (2023-04-20 11:04:30+02:00) for Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:04:41.617Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "8", + "object_repr": "Comment: PMD en REST staan op het gelijkvloers, de rest in de kelder. (2023-04-20 11:04:30+02:00) for Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 219, "fields": { - "action_time": "2023-04-20T09:05:08.828Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "9", - "object_repr": "Comment: Je moet langs de grote poort binnen. (2023-04-20 11:04:49+02:00) for Grote Markt 3, Antwerpen 2000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:05:08.828Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "9", + "object_repr": "Comment: Je moet langs de grote poort binnen. (2023-04-20 11:04:49+02:00) for Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 220, "fields": { - "action_time": "2023-04-20T09:06:36.454Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "buildingcomment" - ], - "object_id": "10", - "object_repr": "Comment: De containers hangen vast met een slot (code 7361) (2023-04-20 11:05:37+02:00) for Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:06:36.454Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "buildingcomment" + ], + "object_id": "10", + "object_repr": "Comment: De containers hangen vast met een slot (code 7361) (2023-04-20 11:05:37+02:00) for Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 221, "fields": { - "action_time": "2023-04-20T09:13:43.607Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "20", - "object_repr": "Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:13:43.607Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "20", + "object_repr": "Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 222, "fields": { - "action_time": "2023-04-20T09:15:45.511Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "21", - "object_repr": "Stropersgracht 32, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:15:45.511Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "21", + "object_repr": "Stropersgracht 32, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 223, "fields": { - "action_time": "2023-04-20T09:16:57.832Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "36", - "object_repr": "GRF on 2023-04-20 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:16:57.832Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "36", + "object_repr": "GRF on 2023-04-20 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 224, "fields": { - "action_time": "2023-04-20T09:17:06.104Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "37", - "object_repr": "GLS on 2023-04-20 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:06.104Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "37", + "object_repr": "GLS on 2023-04-20 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 225, "fields": { - "action_time": "2023-04-20T09:17:24.146Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "38", - "object_repr": "PAP on 2023-04-21 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:24.146Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "38", + "object_repr": "PAP on 2023-04-21 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 226, "fields": { - "action_time": "2023-04-20T09:17:35.731Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "39", - "object_repr": "PMD on 2023-04-21 at Veldstraat 1, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:35.731Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "39", + "object_repr": "PMD on 2023-04-21 at Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 227, "fields": { - "action_time": "2023-04-20T09:17:48.776Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "40", - "object_repr": "RES on 2023-04-21 at Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:17:48.776Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "40", + "object_repr": "RES on 2023-04-21 at Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 228, "fields": { - "action_time": "2023-04-20T09:18:02.182Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "41", - "object_repr": "GFT on 2023-04-20 at Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:02.182Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "41", + "object_repr": "GFT on 2023-04-20 at Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 229, "fields": { - "action_time": "2023-04-20T09:18:14.098Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "42", - "object_repr": "PMD on 2023-04-21 at Veldstraat 2, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:14.098Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "42", + "object_repr": "PMD on 2023-04-21 at Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 230, "fields": { - "action_time": "2023-04-20T09:18:25.335Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "43", - "object_repr": "GLS on 2023-04-20 at Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:25.335Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "43", + "object_repr": "GLS on 2023-04-20 at Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 231, "fields": { - "action_time": "2023-04-20T09:18:43.221Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "44", - "object_repr": "PMD on 2023-04-21 at Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:43.221Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "44", + "object_repr": "PMD on 2023-04-21 at Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 232, "fields": { - "action_time": "2023-04-20T09:18:53.567Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "45", - "object_repr": "RES on 2023-04-21 at Veldstraat 3, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:18:53.567Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "45", + "object_repr": "RES on 2023-04-21 at Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 233, "fields": { - "action_time": "2023-04-20T09:19:21.874Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "46", - "object_repr": "RES on 2023-04-21 at Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:19:21.874Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "46", + "object_repr": "RES on 2023-04-21 at Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 234, "fields": { - "action_time": "2023-04-20T09:19:35.166Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "47", - "object_repr": "PAP on 2023-04-20 at Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:19:35.166Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "47", + "object_repr": "PAP on 2023-04-20 at Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 235, "fields": { - "action_time": "2023-04-20T09:19:52.000Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "48", - "object_repr": "GRF on 2023-04-21 at Veldstraat 4, Gent 9000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:19:52.000Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "48", + "object_repr": "GRF on 2023-04-21 at Veldstraat 4, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 236, "fields": { - "action_time": "2023-04-20T09:20:34.267Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "49", - "object_repr": "GRF on 2023-04-20 at Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:20:34.267Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "49", + "object_repr": "GRF on 2023-04-20 at Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 237, "fields": { - "action_time": "2023-04-20T09:20:47.247Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "50", - "object_repr": "RES on 2023-04-21 at 't Zand 2, Brugge 8310", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:20:47.247Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "50", + "object_repr": "RES on 2023-04-21 at 't Zand 2, Brugge 8310", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 238, "fields": { - "action_time": "2023-04-20T09:20:58.392Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "51", - "object_repr": "GLS on 2023-04-21 at Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:20:58.392Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "51", + "object_repr": "GLS on 2023-04-21 at Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 239, "fields": { - "action_time": "2023-04-20T09:21:18.667Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "52", - "object_repr": "GFT on 2023-04-21 at Stropersgracht 32, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:21:18.667Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "52", + "object_repr": "GFT on 2023-04-21 at Stropersgracht 32, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 240, "fields": { - "action_time": "2023-04-20T09:21:31.594Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "53", - "object_repr": "GLS on 2023-04-20 at Stropersgracht 32, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:21:31.594Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "53", + "object_repr": "GLS on 2023-04-20 at Stropersgracht 32, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 241, "fields": { - "action_time": "2023-04-20T09:21:49.005Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "garbagecollection" - ], - "object_id": "54", - "object_repr": "GFT on 2023-04-21 at Palingstraat 42, Brugge 8000", - "action_flag": 1, - "change_message": "[{\"added\": {}}]" - } -}, -{ + "action_time": "2023-04-20T09:21:49.005Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "garbagecollection" + ], + "object_id": "54", + "object_repr": "GFT on 2023-04-21 at Palingstraat 42, Brugge 8000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 242, "fields": { - "action_time": "2023-04-20T09:22:22.266Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "building" - ], - "object_id": "17", - "object_repr": "markt 5, Brugge 8000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:22:22.266Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "building" + ], + "object_id": "17", + "object_repr": "markt 5, Brugge 8000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 243, "fields": { - "action_time": "2023-04-20T09:27:53.135Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "7", - "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.135Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "7", + "object_repr": "Manual: manual_KGPwTq7.pdf (version 0) for Grote Markt 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 244, "fields": { - "action_time": "2023-04-20T09:27:53.148Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "6", - "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.148Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "6", + "object_repr": "Manual: manual_Lis1No8.pdf (version 0) for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 245, "fields": { - "action_time": "2023-04-20T09:27:53.152Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "5", - "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.152Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "5", + "object_repr": "Manual: manual_1rTYOnL.pdf (version 3) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 246, "fields": { - "action_time": "2023-04-20T09:27:53.154Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "4", - "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.154Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "4", + "object_repr": "Manual: manual_ZrabAvF.pdf (version 2) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 247, "fields": { - "action_time": "2023-04-20T09:27:53.157Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "3", - "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.157Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "3", + "object_repr": "Manual: manual_Z9rE7NK.pdf (version 1) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 248, "fields": { - "action_time": "2023-04-20T09:27:53.159Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "2", - "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.159Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "2", + "object_repr": "Manual: manualXYZ.pdf (version 0) for Sint-Pietersnieuwstraat 33, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 249, "fields": { - "action_time": "2023-04-20T09:27:53.161Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "manual" - ], - "object_id": "1", - "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:27:53.161Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "manual" + ], + "object_id": "1", + "object_repr": "Manual: manual.pdf (version 0) for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 250, + "fields": { + "action_time": "2023-04-20T09:28:36.399Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "19", + "object_repr": "stefanie@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { "model": "admin.logentry", "pk": 251, "fields": { - "action_time": "2023-04-20T09:28:55.003Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "7", - "object_repr": "Tour testSequence in region Gent", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:28:55.003Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "7", + "object_repr": "Tour testSequence in region Gent", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 252, "fields": { - "action_time": "2023-04-20T09:28:55.017Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "6", - "object_repr": "Tour hoihoi in region Gent", - "action_flag": 3, - "change_message": "" - } -}, -{ + "action_time": "2023-04-20T09:28:55.017Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "6", + "object_repr": "Tour hoihoi in region Gent", + "action_flag": 3, + "change_message": "" + } + }, + { "model": "admin.logentry", "pk": 253, "fields": { - "action_time": "2023-04-20T09:28:55.019Z", - "user": [ - "admin@test.com" - ], - "content_type": [ - "base", - "tour" - ], - "object_id": "5", - "object_repr": "Tour test in region Gent", - "action_flag": 3, - "change_message": "" - } -} -] \ No newline at end of file + "action_time": "2023-04-20T09:28:55.019Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "tour" + ], + "object_id": "5", + "object_repr": "Tour test in region Gent", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 254, + "fields": { + "action_time": "2023-04-20T09:29:30.486Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "20", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 255, + "fields": { + "action_time": "2023-04-20T09:29:40.809Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "21", + "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 256, + "fields": { + "action_time": "2023-04-20T09:29:51.526Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "22", + "object_repr": "steven@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-20", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 257, + "fields": { + "action_time": "2023-04-20T09:30:04.129Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "23", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 258, + "fields": { + "action_time": "2023-04-20T09:30:21.302Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "24", + "object_repr": "sterre@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 259, + "fields": { + "action_time": "2023-04-20T09:30:59.908Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "25", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour UAntwerpen Campussen in region Antwerpen on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 260, + "fields": { + "action_time": "2023-04-20T09:31:16.385Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "26", + "object_repr": "stef@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-21", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 283, + "fields": { + "action_time": "2023-04-20T10:32:27.463Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "14", + "object_repr": "VE for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 284, + "fields": { + "action_time": "2023-04-20T10:32:27.508Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "13", + "object_repr": "OP for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 285, + "fields": { + "action_time": "2023-04-20T10:32:27.511Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "12", + "object_repr": "BI for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 286, + "fields": { + "action_time": "2023-04-20T10:32:27.515Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "11", + "object_repr": "AA for Prinsstraat 13, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 287, + "fields": { + "action_time": "2023-04-20T10:32:27.518Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "10", + "object_repr": "OP for Middelheimlaan 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 288, + "fields": { + "action_time": "2023-04-20T10:32:27.521Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "9", + "object_repr": "BI for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 289, + "fields": { + "action_time": "2023-04-20T10:32:27.524Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "8", + "object_repr": "OP for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 290, + "fields": { + "action_time": "2023-04-20T10:32:27.527Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "7", + "object_repr": "AA for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 291, + "fields": { + "action_time": "2023-04-20T10:32:27.530Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "6", + "object_repr": "AA for Karel Lodewijk Ledeganckstraat 35, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 292, + "fields": { + "action_time": "2023-04-20T10:32:27.533Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "5", + "object_repr": "VE for Krijgslaan 281, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 293, + "fields": { + "action_time": "2023-04-20T10:32:27.536Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "4", + "object_repr": "BI for Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 294, + "fields": { + "action_time": "2023-04-20T10:32:27.539Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "3", + "object_repr": "OP for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 295, + "fields": { + "action_time": "2023-04-20T10:32:27.542Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "2", + "object_repr": "VE for Universiteitsplein 1, Antwerpen 2000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 296, + "fields": { + "action_time": "2023-04-20T10:32:27.545Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "1", + "object_repr": "AA for Veldstraat 1, Gent 9000", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 297, + "fields": { + "action_time": "2023-04-20T10:33:50.458Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "15", + "object_repr": "AA for Veldstraat 1, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 298, + "fields": { + "action_time": "2023-04-20T10:34:10.541Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "16", + "object_repr": "BI for Veldstraat 3, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 299, + "fields": { + "action_time": "2023-04-20T10:35:10.608Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "17", + "object_repr": "OP for Grote Markt 3, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 300, + "fields": { + "action_time": "2023-04-20T11:23:36.121Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "23", + "object_repr": "stephan@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-21", + "action_flag": 3, + "change_message": "" + } + }, + { + "model": "admin.logentry", + "pk": 301, + "fields": { + "action_time": "2023-04-20T11:24:52.818Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "18", + "object_repr": "OP for Groenenborgerlaan 171, Antwerpen 2000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 302, + "fields": { + "action_time": "2023-04-20T11:25:25.317Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "remarkatbuilding" + ], + "object_id": "19", + "object_repr": "VE for Veldstraat 2, Gent 9000", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 303, + "fields": { + "action_time": "2023-04-20T12:51:17.017Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "52", + "object_repr": "stanford@test.com (Student (rank: 3)) at Tour Centrum in region Gent on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 304, + "fields": { + "action_time": "2023-04-20T12:51:30.328Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "53", + "object_repr": "stella@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-17", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 305, + "fields": { + "action_time": "2023-04-20T12:51:49.184Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "54", + "object_repr": "sten@test.com (Student (rank: 3)) at Tour UGent Campussen in region Gent on 2023-04-19", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + }, + { + "model": "admin.logentry", + "pk": 306, + "fields": { + "action_time": "2023-04-20T12:52:00.322Z", + "user": [ + "admin@test.com" + ], + "content_type": [ + "base", + "studentontour" + ], + "object_id": "55", + "object_repr": "stacey@test.com (Student (rank: 3)) at Tour Grote Markt in region Antwerpen on 2023-04-18", + "action_flag": 1, + "change_message": "[{\"added\": {}}]" + } + } +]