diff --git a/src/accounts/models.py b/src/accounts/models.py index 8e807e8..1d8fa9f 100644 --- a/src/accounts/models.py +++ b/src/accounts/models.py @@ -25,3 +25,9 @@ class User(AbstractUser): choices=TIMEZONE_CHOICES, default=MOUNTAIN ) + + def __str__(self): + if self.first_name and self.last_name: + return f'{self.first_name} {self.last_name}' + else: + return self.username diff --git a/src/accounts/templates/accounts/account_detail.html b/src/accounts/templates/accounts/account_detail.html index fdbd203..7f4572b 100755 --- a/src/accounts/templates/accounts/account_detail.html +++ b/src/accounts/templates/accounts/account_detail.html @@ -1,72 +1,23 @@ {% extends 'base.html' %} -{% load static %} + +{% block head_title %}Profile |{% endblock %} {% block content %} -
-
-

Welcome {{user.first_name}} {{user.last_name }} -
- Here's what's going on today -

+
+
+
+

{{ user }}

+

Joined:

+
+ Edit
-
-

Birthdays

-
    - {% for student in birthdays %} -
  • {{student}} is turning {{student.age|add:1}} on {{student.dob|date:"M j"}}
  • - {% empty %} -

    No Birthdays this next week.

    - {% endfor %} -
-
-
-

Today's Assignments

-
    - {% for component in components %} -
  • - {{component.subject}}, {{component}} -
  • - {% empty %} -

    Nothing for today.

    - {% endfor %} -
-
-
-

Today's Attendance

- {% for day in attendance %} -

{{day.date}}

- - - - - - - - - {% for entry in day.entry_set.all %} - - - - - - {% endfor %} - -
StudentStatus
{{entry.student}}{{entry.get_status_display}}Update
- {% empty %} -

No attendance taken yet: Take attendance

- {% endfor %} -
-
-

Assignments to be graded

-
    - {% for component in ungraded_components %} -
  • - {{component.subject}}, {{component}} -
  • - {% empty %} -

    Everything is graded to far.

    - {% endfor %} -
+
+
+
Username
+
{{ user.username }}
+
Email address
+
{{ user.email }}
+
{% endblock %} diff --git a/src/accounts/templates/accounts/account_list.html b/src/accounts/templates/accounts/account_list.html deleted file mode 100755 index e3d9893..0000000 --- a/src/accounts/templates/accounts/account_list.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends 'base.html' %} - -{% block content %} -
-

Users

- - - - - - - {% for user in user_list %} - - - - - {% empty %} - - {% endfor %} - -
UsernameName
{{ user.username }}{{user.first_name}} {{user.last_name}}
No users yet.
-
-{% endblock %} diff --git a/src/accounts/urls.py b/src/accounts/urls.py index 4f89f4f..dbe0da6 100644 --- a/src/accounts/urls.py +++ b/src/accounts/urls.py @@ -2,10 +2,21 @@ from django.urls import path, include from . import views urlpatterns = [ - path('', views.AccountListView.as_view(), name='account-list'), path('/', include([ - path('', views.AccountDetailView.as_view(), name='account-detail'), - path('update/', views.AccountUpdateView.as_view(), name='account-update'), - path('delete/', views.AccountDeleteView.as_view(), name='account-delete'), + path( + '', + views.AccountDetailView.as_view(), + name='account-detail' + ), + path( + 'update/', + views.AccountUpdateView.as_view(), + name='account-update' + ), + path( + 'delete/', + views.AccountDeleteView.as_view(), + name='account-delete' + ), ])), ] diff --git a/src/accounts/views.py b/src/accounts/views.py index d5e8bc7..070266b 100644 --- a/src/accounts/views.py +++ b/src/accounts/views.py @@ -12,48 +12,14 @@ from django.contrib.auth.decorators import login_required from django.contrib.auth.mixins import LoginRequiredMixin from django.contrib.auth.forms import PasswordChangeForm -from students.models import Student -from gradebook.models import Component -from attendance.models import Day, Entry - from .models import User from .forms import AccountUpdateForm -class AccountListView(LoginRequiredMixin, ListView): - model = User - template_name = 'accounts/account_list.html' - - class AccountDetailView(LoginRequiredMixin, DetailView): model = User template_name = 'accounts/account_detail.html' - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - today = timezone.localtime(timezone.now()).date() - enddate = today + dt.timedelta(days=7) - - context['birthdays'] = Student.objects.filter( - dob__month=today.month, - dob__day__range=[today.day, enddate.day] - ).order_by('dob') - - context['components'] = Component.objects.filter( - due_date=today - ).select_related('subject') - - context['attendance'] = Day.objects.filter( - date=today - ).prefetch_related('entry_set', 'entry_set__student') - - context['ungraded_components'] = Component.objects.filter( - due_date__lte=today, - finished_grading=False - ).select_related('subject') - - return context - class AccountUpdateView(LoginRequiredMixin, UpdateView): model = User diff --git a/src/attendance/__init__.py b/src/attendance/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/attendance/admin.py b/src/attendance/admin.py deleted file mode 100644 index 186b2af..0000000 --- a/src/attendance/admin.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.contrib import admin - -from .models import Day, Entry - -admin.site.register(Day) -admin.site.register(Entry) diff --git a/src/attendance/apps.py b/src/attendance/apps.py deleted file mode 100644 index ba31b45..0000000 --- a/src/attendance/apps.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.apps import AppConfig - - -class AttendanceConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'attendance' diff --git a/src/attendance/forms.py b/src/attendance/forms.py deleted file mode 100644 index 5a040a5..0000000 --- a/src/attendance/forms.py +++ /dev/null @@ -1,24 +0,0 @@ -from django import forms -from django.utils import timezone -from .models import Day, Entry - -from students.models import Student - - -class DayForm(forms.ModelForm): - class Meta: - model = Day - fields = ('date',) - widgets = { - 'date': forms.DateInput(attrs = { - 'type': 'date', - }), - } - -class EntryForm(forms.ModelForm): - class Meta: - model = Entry - fields = ('day', 'student', 'status') - widgets = { - 'student': forms.HiddenInput() - } diff --git a/src/attendance/migrations/0001_initial.py b/src/attendance/migrations/0001_initial.py deleted file mode 100644 index 8ed891f..0000000 --- a/src/attendance/migrations/0001_initial.py +++ /dev/null @@ -1,39 +0,0 @@ -# Generated by Django 3.2.7 on 2021-09-01 15:26 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ('students', '0001_initial'), - ] - - operations = [ - migrations.CreateModel( - name='Day', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('date', models.DateField()), - ], - options={ - 'ordering': ('-date',), - }, - ), - migrations.CreateModel( - name='Entry', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('status', models.CharField(choices=[('P', 'Present'), ('T', 'Tardy'), ('A', 'Absent')], default='P', max_length=1)), - ('day', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='attendance.day')), - ('student', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='students.student')), - ], - options={ - 'verbose_name_plural': 'entries', - 'ordering': ('student',), - }, - ), - ] diff --git a/src/attendance/migrations/__init__.py b/src/attendance/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/attendance/models.py b/src/attendance/models.py deleted file mode 100644 index aba8f43..0000000 --- a/src/attendance/models.py +++ /dev/null @@ -1,33 +0,0 @@ -from django.db import models -from students.models import Student - -class Day(models.Model): - class Meta: - ordering = ('-date',) - - date = models.DateField() - - def __str__(self): - return f"{self.date}" - -class Entry(models.Model): - class Meta: - verbose_name_plural = 'entries' - ordering = ('student',) - - STATUS_CHOICES = [ - ('P', 'Present'), - ('T', 'Tardy'), - ('A', 'Absent'), - ] - - day = models.ForeignKey(Day, on_delete=models.CASCADE) - student = models.ForeignKey(Student, on_delete=models.CASCADE) - status = models.CharField( - max_length=1, - choices=STATUS_CHOICES, - default='P' - ) - - def __str__(self): - return f"{self.day} | {self.student} | {self.status}" diff --git a/src/attendance/templates/attendance/day_confirm_delete.html b/src/attendance/templates/attendance/day_confirm_delete.html deleted file mode 100644 index 29a8cf1..0000000 --- a/src/attendance/templates/attendance/day_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Delete {{day}}

-
- {% csrf_token %} -

- or cancel -

-
-
-{% endblock %} \ No newline at end of file diff --git a/src/attendance/templates/attendance/day_create_form.html b/src/attendance/templates/attendance/day_create_form.html deleted file mode 100644 index fe38267..0000000 --- a/src/attendance/templates/attendance/day_create_form.html +++ /dev/null @@ -1,34 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-
- {% csrf_token %} -
-

Take Attendance

- {{form.as_p}} -
- - - - - - - - - - - {% for student in student_list %} - - - - - - - {% endfor %} - -
StudentPresentTardyAbsent
{{student.full_name}}
- or cancel -
-
-{% endblock %} diff --git a/src/attendance/templates/attendance/day_form.html b/src/attendance/templates/attendance/day_form.html deleted file mode 100644 index 9ea345e..0000000 --- a/src/attendance/templates/attendance/day_form.html +++ /dev/null @@ -1,34 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-
- {% csrf_token %} -
-

Take Attendance

- {{form.as_p}} -
- - - - - - - - - - - {% for entry in day.entry_set.all %} - - - - - - - {% endfor %} - -
StudentPresentTardyAbsent
{{entry.student.full_name}}
- or cancel -
-
-{% endblock %} diff --git a/src/attendance/templates/attendance/day_list.html b/src/attendance/templates/attendance/day_list.html deleted file mode 100644 index 2ef3a71..0000000 --- a/src/attendance/templates/attendance/day_list.html +++ /dev/null @@ -1,51 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Attendance

-

- Take attendance -

-
- {% for day in day_list %} -

{{day.date}}

- - - - - - - - - {% for entry in day.entry_set.all %} - - - - - - {% endfor %} - -
StudentStatus
{{entry.student}}{{entry.get_status_display}}Update
- {% empty %} -

No attendance taken yet.

- {% endfor %} -
-
- - {% if page_obj.has_previous %} - « first - ‹ previous - {% endif %} - - - Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. - - - {% if page_obj.has_next %} - next › - last » - {% endif %} - -
-
-{% endblock %} \ No newline at end of file diff --git a/src/attendance/templates/attendance/entry_confirm_delete.html b/src/attendance/templates/attendance/entry_confirm_delete.html deleted file mode 100644 index a640505..0000000 --- a/src/attendance/templates/attendance/entry_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-

Delete {{entry}}

-
- {% csrf_token %} -

- or cancel -

-
-
-{% endblock %} \ No newline at end of file diff --git a/src/attendance/templates/attendance/entry_form.html b/src/attendance/templates/attendance/entry_form.html deleted file mode 100644 index ba63152..0000000 --- a/src/attendance/templates/attendance/entry_form.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
-
-

Update Entry

- Delete {{entry}} -
-

For {{student}}

-
-
- {% csrf_token %} - {{form.as_p}} -

- or cancel -

-
-
-
-{% endblock %} \ No newline at end of file diff --git a/src/attendance/tests.py b/src/attendance/tests.py deleted file mode 100644 index 7ce503c..0000000 --- a/src/attendance/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/src/attendance/urls.py b/src/attendance/urls.py deleted file mode 100644 index b77b6ff..0000000 --- a/src/attendance/urls.py +++ /dev/null @@ -1,20 +0,0 @@ -from django.urls import path, include -from . import views - -urlpatterns = [ - path('days/', views.DayListView.as_view(), name='day-list'), - path('days/new/', views.DayCreateView.as_view(), name='day-create'), - path('days//', include([ - path('', views.DayDetailView.as_view(), name='day-detail'), - path('update/', views.DayUpdateView.as_view(), name='day-update'), - path('delete/', views.DayDeleteView.as_view(), name='day-delete'), - ])), - - path('entries/', views.EntryListView.as_view(), name='entry-list'), - path('entries/new/', views.EntryCreateView.as_view(), name='entry-create'), - path('entries//', include([ - path('', views.EntryDetailView.as_view(), name='entry-detail'), - path('update/', views.EntryUpdateView.as_view(), name='entry-update'), - path('delete/', views.EntryDeleteView.as_view(), name='entry-delete'), - ])), -] diff --git a/src/attendance/views.py b/src/attendance/views.py deleted file mode 100644 index d45ff60..0000000 --- a/src/attendance/views.py +++ /dev/null @@ -1,98 +0,0 @@ -from django.shortcuts import render -from django.http import HttpResponseRedirect -from django.urls import reverse_lazy, reverse -from django.views.generic.base import TemplateView -from django.views.generic.edit import FormView, CreateView, UpdateView, DeleteView -from django.views.generic.detail import DetailView -from django.views.generic.list import ListView -from django.contrib.auth.mixins import LoginRequiredMixin -from django.utils import timezone - -from django.db.models import Prefetch, Subquery, Count, Sum, F, Q, Value -from django.db.models.functions import Length, Upper - -from students.models import Student -from .models import Day, Entry -from .forms import DayForm, EntryForm - - -# Days -class DayListView(LoginRequiredMixin, ListView): - model = Day - paginate_by = 7 - - def get_queryset(self): - object_list = Day.objects.all().prefetch_related('entry_set', 'entry_set__student') - return object_list - -class DayCreateView(LoginRequiredMixin, CreateView): - model = Day - template_name_suffix = '_create_form' - form_class = DayForm - success_url = reverse_lazy('profile-detail') - - def get_initial(self): - today = timezone.localtime(timezone.now()).date() - initial = { - 'date': today, - } - return initial - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context['student_list'] = Student.objects.all() - return context - - def form_valid(self, form): - form.save() - for key, value in self.request.POST.items(): - if 'student' in key: - s = key.split('_')[1] - Entry.objects.create( - day=form.instance, - student=Student.objects.get(pk=s), - status=value, - ) - return super().form_valid(form) - -class DayDetailView(LoginRequiredMixin, DetailView): - model = Day - -class DayUpdateView(LoginRequiredMixin, UpdateView): - model = Day - form_class = DayForm - success_url = reverse_lazy('day-list') - - def form_valid(self, form): - form.save() - for key, value in self.request.POST.items(): - if 'student' in key: - s = key.split('_')[1] - Entry.objects.filter(day=self.object, student=s).update(status=value) - return super().form_valid(form) - -class DayDeleteView(LoginRequiredMixin, DeleteView): - model = Day - success_url = reverse_lazy('day-list') - - -# Entries -class EntryListView(LoginRequiredMixin, ListView): - model = Entry - -class EntryCreateView(LoginRequiredMixin, CreateView): - model = Entry - template_name_suffix = '_create_form' - fields = ('__all__') - -class EntryDetailView(LoginRequiredMixin, DetailView): - model = Entry - -class EntryUpdateView(LoginRequiredMixin, UpdateView): - model = Entry - form_class = EntryForm - success_url = reverse_lazy('day-list') - -class EntryDeleteView(LoginRequiredMixin, DeleteView): - model = Entry - success_url = reverse_lazy('day-list') diff --git a/src/core/admin.py b/src/core/admin.py index 8c38f3f..1ebb17e 100644 --- a/src/core/admin.py +++ b/src/core/admin.py @@ -1,3 +1,23 @@ from django.contrib import admin -# Register your models here. +from .models import ( + SchoolYear, + StudentTag, + Student, + Subject, + Tag, + Component, + Score, + SchoolDay, + AttendanceEntry, +) + +admin.site.register(SchoolYear) +admin.site.register(StudentTag) +admin.site.register(Student) +admin.site.register(Subject) +admin.site.register(Tag) +admin.site.register(Component) +admin.site.register(Score) +admin.site.register(SchoolDay) +admin.site.register(AttendanceEntry) diff --git a/src/core/context_processors.py b/src/core/context_processors.py new file mode 100644 index 0000000..fc630b0 --- /dev/null +++ b/src/core/context_processors.py @@ -0,0 +1,8 @@ +from .models import SchoolYear +from django.shortcuts import get_object_or_404 + + +def current_year(request): + return { + 'current_year': SchoolYear.objects.latest('year') + } diff --git a/src/core/forms.py b/src/core/forms.py index 7a137b5..4e2a0eb 100644 --- a/src/core/forms.py +++ b/src/core/forms.py @@ -16,22 +16,56 @@ from .models import ( class SchoolYearCreateForm(forms.ModelForm): class Meta: model = SchoolYear - fields = [ - 'year' - ] + fields = ['year'] class StudentForm(forms.ModelForm): class Meta: model = Student - fields = ( + fields = [ 'student_id', 'first_name', 'last_name', 'address', 'dob', - ) + 'allergies', + 'tags' + ] labels = { 'student_id': 'Student ID', - 'dob': 'DOB', + 'dob': 'DOB' + } + + +class ComponentCreateForm(forms.ModelForm): + class Meta: + model = Component + fields = [ + 'name', + 'category', + 'due_date', + 'grade_total' + ] + widgets = { + 'due_date': forms.DateInput(attrs={'type': 'date'}) + } + + +class SchoolDayForm(forms.ModelForm): + class Meta: + model = SchoolDay + fields = ['date'] + widgets = { + 'date': forms.DateInput(attrs={ + 'type': 'date', + }) + } + + +class AttendanceEntryForm(forms.ModelForm): + class Meta: + model = AttendanceEntry + fields = ['status'] + widgets = { + 'status': forms.RadioSelect() } diff --git a/src/core/migrations/0001_initial.py b/src/core/migrations/0001_initial.py index fd3ee3f..2d6afad 100644 --- a/src/core/migrations/0001_initial.py +++ b/src/core/migrations/0001_initial.py @@ -1,4 +1,4 @@ -# Generated by Django 4.0.5 on 2022-06-29 18:50 +# Generated by Django 4.0.5 on 2022-07-28 20:46 from django.db import migrations, models import django.db.models.deletion @@ -9,16 +9,41 @@ class Migration(migrations.Migration): initial = True dependencies = [ - ('contenttypes', '0002_remove_content_type_name'), ] operations = [ + migrations.CreateModel( + name='Component', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=50)), + ('category', models.CharField(choices=[('QUIZ', 'Quiz'), ('ASSIGNMENT', 'Assignment'), ('TEST', 'Test')], default='ASSIGNMENT', max_length=255)), + ('due_date', models.DateField()), + ('grade_total', models.PositiveIntegerField()), + ('finished_grading', models.BooleanField(default=False)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), + ], + options={ + 'ordering': ['due_date'], + }, + ), migrations.CreateModel( name='SchoolYear', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('start_date', models.DateField()), - ('end_date', models.DateField()), + ('year', models.PositiveIntegerField(unique=True)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), + ], + ), + migrations.CreateModel( + name='StudentTag', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=255)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), ], ), migrations.CreateModel( @@ -26,6 +51,8 @@ class Migration(migrations.Migration): fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=50)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), ], options={ 'ordering': ['name'], @@ -37,21 +64,14 @@ class Migration(migrations.Migration): ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=250)), ('description', models.CharField(blank=True, max_length=250)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), ('school_year', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='core.schoolyear')), ], options={ 'ordering': ['name'], }, ), - migrations.CreateModel( - name='StudentTag', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('tag', models.SlugField()), - ('object_id', models.PositiveIntegerField()), - ('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype')), - ], - ), migrations.CreateModel( name='Student', fields=[ @@ -61,44 +81,58 @@ class Migration(migrations.Migration): ('last_name', models.CharField(max_length=50)), ('address', models.TextField(blank=True)), ('dob', models.DateField()), + ('allergies', models.CharField(blank=True, max_length=255)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), ('school_year', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='core.schoolyear')), + ('tags', models.ManyToManyField(blank=True, to='core.studenttag')), ], options={ 'ordering': ['student_id', 'first_name'], }, ), + migrations.CreateModel( + name='Score', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('value', models.PositiveIntegerField()), + ('component', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.component')), + ('student', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.student')), + ], + options={ + 'ordering': ['student'], + }, + ), migrations.CreateModel( name='SchoolDay', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('date', models.DateField()), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), ('school_year', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='core.schoolyear')), ], options={ 'ordering': ['-date'], }, ), - migrations.CreateModel( - name='Component', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=50)), - ('category', models.CharField(choices=[('QUIZ', 'Quiz'), ('ASSIGNMENT', 'Assignment'), ('TEST', 'Test')], default='ASSIGNMENT', max_length=255)), - ('due_date', models.DateField()), - ('grade_total', models.PositiveIntegerField()), - ('finished_grading', models.BooleanField(default=False)), - ('subject', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.subject')), - ('tags', models.ManyToManyField(blank=True, to='core.tag')), - ], - options={ - 'ordering': ['due_date'], - }, + migrations.AddField( + model_name='component', + name='subject', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.subject'), + ), + migrations.AddField( + model_name='component', + name='tags', + field=models.ManyToManyField(blank=True, to='core.tag'), ), migrations.CreateModel( name='AttendanceEntry', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('status', models.CharField(choices=[('P', 'Present'), ('T', 'Tardy'), ('A', 'Absent')], default='P', max_length=1)), + ('created_at', models.DateTimeField(auto_now_add=True)), + ('updated_at', models.DateTimeField(auto_now=True)), ('school_day', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.schoolday')), ('student', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.student')), ], @@ -107,8 +141,4 @@ class Migration(migrations.Migration): 'ordering': ['student'], }, ), - migrations.AddIndex( - model_name='studenttag', - index=models.Index(fields=['content_type', 'object_id'], name='core_studen_content_a7305d_idx'), - ), ] diff --git a/src/core/migrations/0002_alter_schoolyear_start_date.py b/src/core/migrations/0002_alter_schoolyear_start_date.py deleted file mode 100644 index 07bad54..0000000 --- a/src/core/migrations/0002_alter_schoolyear_start_date.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.0.5 on 2022-06-29 20:35 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('core', '0001_initial'), - ] - - operations = [ - migrations.AlterField( - model_name='schoolyear', - name='start_date', - field=models.DateField(unique_for_year=True), - ), - ] diff --git a/src/core/migrations/0003_remove_schoolyear_end_date_and_more.py b/src/core/migrations/0003_remove_schoolyear_end_date_and_more.py deleted file mode 100644 index d7b4c26..0000000 --- a/src/core/migrations/0003_remove_schoolyear_end_date_and_more.py +++ /dev/null @@ -1,27 +0,0 @@ -# Generated by Django 4.0.5 on 2022-06-29 20:47 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('core', '0002_alter_schoolyear_start_date'), - ] - - operations = [ - migrations.RemoveField( - model_name='schoolyear', - name='end_date', - ), - migrations.RemoveField( - model_name='schoolyear', - name='start_date', - ), - migrations.AddField( - model_name='schoolyear', - name='year', - field=models.PositiveIntegerField(default=2021), - preserve_default=False, - ), - ] diff --git a/src/core/migrations/0004_alter_schoolyear_year.py b/src/core/migrations/0004_alter_schoolyear_year.py deleted file mode 100644 index fc6665d..0000000 --- a/src/core/migrations/0004_alter_schoolyear_year.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.0.5 on 2022-06-29 20:48 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('core', '0003_remove_schoolyear_end_date_and_more'), - ] - - operations = [ - migrations.AlterField( - model_name='schoolyear', - name='year', - field=models.PositiveIntegerField(unique=True), - ), - ] diff --git a/src/core/migrations/0005_attendanceentry_created_at_and_more.py b/src/core/migrations/0005_attendanceentry_created_at_and_more.py deleted file mode 100644 index 60cf571..0000000 --- a/src/core/migrations/0005_attendanceentry_created_at_and_more.py +++ /dev/null @@ -1,104 +0,0 @@ -# Generated by Django 4.0.5 on 2022-06-29 21:27 - -import datetime -from django.db import migrations, models -from django.utils.timezone import utc -import django.utils.timezone - - -class Migration(migrations.Migration): - - dependencies = [ - ('core', '0004_alter_schoolyear_year'), - ] - - operations = [ - migrations.AddField( - model_name='attendanceentry', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='attendanceentry', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - migrations.AddField( - model_name='component', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='component', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - migrations.AddField( - model_name='schoolday', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='schoolday', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - migrations.AddField( - model_name='schoolyear', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='schoolyear', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - migrations.AddField( - model_name='student', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=datetime.datetime(2022, 6, 29, 21, 26, 47, 547231, tzinfo=utc)), - preserve_default=False, - ), - migrations.AddField( - model_name='student', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - migrations.AddField( - model_name='studenttag', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='studenttag', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - migrations.AddField( - model_name='subject', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='subject', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - migrations.AddField( - model_name='tag', - name='created_at', - field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='tag', - name='updated_at', - field=models.DateTimeField(auto_now=True), - ), - ] diff --git a/src/core/migrations/0006_score.py b/src/core/migrations/0006_score.py deleted file mode 100644 index 35338e0..0000000 --- a/src/core/migrations/0006_score.py +++ /dev/null @@ -1,26 +0,0 @@ -# Generated by Django 4.0.5 on 2022-06-30 20:03 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('core', '0005_attendanceentry_created_at_and_more'), - ] - - operations = [ - migrations.CreateModel( - name='Score', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('value', models.PositiveIntegerField()), - ('component', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.component')), - ('student', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.student')), - ], - options={ - 'ordering': ['student'], - }, - ), - ] diff --git a/src/core/models.py b/src/core/models.py index 5a54a2c..365113e 100644 --- a/src/core/models.py +++ b/src/core/models.py @@ -5,6 +5,9 @@ from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.fields import ( GenericForeignKey, GenericRelation ) +from django.db.models import ( + Exists, OuterRef, Prefetch, Subquery, Count, Sum, Avg, F, Q, Value +) class SchoolYear(models.Model): @@ -27,21 +30,13 @@ class SchoolYear(models.Model): class StudentTag(models.Model): - tag = models.SlugField() - content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE) - object_id = models.PositiveIntegerField() - content_object = GenericForeignKey('content_type', 'object_id') + name = models.CharField(max_length=255) created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) def __str__(self): - return self.tag - - class Meta: - indexes = [ - models.Index(fields=['content_type', 'object_id']), - ] + return self.name # class StudentManager(models.Manager): @@ -66,8 +61,9 @@ class Student(models.Model): last_name = models.CharField(max_length=50) address = models.TextField(blank=True) dob = models.DateField() + allergies = models.CharField(max_length=255, blank=True) - tags = GenericRelation(StudentTag) + tags = models.ManyToManyField(StudentTag, blank=True) created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) @@ -89,7 +85,7 @@ class Student(models.Model): def get_absolute_url(self): return reverse('core:student-detail', kwargs={ 'year': self.school_year.year, - 'student_pk': self.pk + 'pk': self.pk }) class Meta: @@ -114,7 +110,10 @@ class Subject(models.Model): return self.name def get_absolute_url(self): - return reverse('subject-detail', kwargs={'pk': self.pk}) + return reverse('core:subject-detail', kwargs={ + 'year': self.school_year.year, + 'pk': self.pk + }) class Meta: ordering = ['name'] @@ -180,7 +179,11 @@ class Component(models.Model): return self.name def get_absolute_url(self): - return reverse('component-detail', kwargs={'pk': self.pk}) + return reverse('core:component-detail', kwargs={ + 'year': self.school_year.year, + 'pk': self.subject.pk, + 'component_pk': self.pk + }) class Meta: ordering = ['due_date'] @@ -203,7 +206,11 @@ class Score(models.Model): return f'{self.student} scored: {self.value} / {self.component.grade_total}' def get_absolute_url(self): - return reverse('score-detail', kwargs={'pk': self.pk}) + return reverse('core:component-detail', kwargs={ + 'year': self.component.subject.school_year.year, + 'pk': self.component.subject.pk, + 'component_pk': self.component.pk + }) class Meta: ordering = ['student'] @@ -222,6 +229,12 @@ class SchoolDay(models.Model): created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) + def get_absolute_url(self): + return reverse('core:schoolday-detail', kwargs={ + 'year': self.school_year.year, + 'pk': self.pk + }) + def __str__(self): return f'{self.date}' @@ -251,8 +264,15 @@ class AttendanceEntry(models.Model): created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) + def get_absolute_url(self): + return reverse('core:schoolday-detail', kwargs={ + 'year': self.school_day.school_year.year, + 'pk': self.school_day.pk, + 'entry_pk': self.pk + }) + def __str__(self): - return f"{self.day} | {self.student} | {self.status}" + return f"{self.school_day} | {self.student} | {self.status}" class Meta: verbose_name_plural = 'entries' diff --git a/src/core/templates/core/attendanceentry_confirm_delete.html b/src/core/templates/core/attendanceentry_confirm_delete.html new file mode 100644 index 0000000..18ce92a --- /dev/null +++ b/src/core/templates/core/attendanceentry_confirm_delete.html @@ -0,0 +1,31 @@ +{% extends 'base.html' %} + +{% block head_title %}Edit Attendance | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Delete Attendanceentry

+
+
+ {% csrf_token %} +

Are you sure you want to delete "{{ attendanceentry }}"?

+ {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/attendanceentry_create_form.html b/src/core/templates/core/attendanceentry_create_form.html new file mode 100644 index 0000000..d4a2762 --- /dev/null +++ b/src/core/templates/core/attendanceentry_create_form.html @@ -0,0 +1,12 @@ +{% extends 'base.html' %} + +{% block content %} +

+ New Attendanceentry

+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+{% endblock %} diff --git a/src/core/templates/core/attendanceentry_detail.html b/src/core/templates/core/attendanceentry_detail.html new file mode 100644 index 0000000..0ae4565 --- /dev/null +++ b/src/core/templates/core/attendanceentry_detail.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} + +{% block head_title %}Attendance | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Edit Attendance

+
+

Delete

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/attendanceentry_form.html b/src/core/templates/core/attendanceentry_form.html new file mode 100644 index 0000000..3693718 --- /dev/null +++ b/src/core/templates/core/attendanceentry_form.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} + +{% block head_title %}Edit Attendance | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Edit Attendance

+
+

Delete

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/attendanceentry_list.html b/src/core/templates/core/attendanceentry_list.html new file mode 100644 index 0000000..bd7d376 --- /dev/null +++ b/src/core/templates/core/attendanceentry_list.html @@ -0,0 +1,16 @@ +{% extends 'base.html' %} + +{% block content %} +

Attendanceentrys

+ + + {% for attendanceentry in attendanceentry_list %} + +
{{ attendanceentry }}
+ + {% empty %} + No attendanceentrys yet. + {% endfor %} + +
+{% endblock %} diff --git a/src/core/templates/core/component_confirm_delete.html b/src/core/templates/core/component_confirm_delete.html new file mode 100644 index 0000000..5c9bf61 --- /dev/null +++ b/src/core/templates/core/component_confirm_delete.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} +{% load helpers %} + +{% block head_title %}{{ component.name }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Delete Component

+

+ Delete +

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/component_create_form.html b/src/core/templates/core/component_create_form.html new file mode 100644 index 0000000..2d64eef --- /dev/null +++ b/src/core/templates/core/component_create_form.html @@ -0,0 +1,28 @@ +{% extends 'base.html' %} + +{% block head_title %}New component | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+

+ New Component

+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/component_detail.html b/src/core/templates/core/component_detail.html new file mode 100644 index 0000000..6b0cf06 --- /dev/null +++ b/src/core/templates/core/component_detail.html @@ -0,0 +1,88 @@ +{% extends "base.html" %} +{% load helpers %} + +{% block head_title %}{{ component.name }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

{{component.name}}   -   {{ component.get_category_display }}{% if component.finished_grading %}   —   ✓ Graded{% endif %}

+

Added:
+ Last updated:

+
+ Edit +
+ {% if component.tags.count > 0 %} +
+ + {% for tag in component.tags.all %} + {{tag.name}} + {% endfor %} + +
+ {% endif %} +
+
+
Due Date
+
{{component.due_date}}
+
Category
+
{{component.get_category_display}}
+
Grade Total
+
{{component.grade_total}}
+
+
+
+
+
+

Scores

+ Enter Scores → +
+
+ + + + + + + + + {% for score in component.score_set.all %} + + + + + + {% endfor %} + + + + + +
StudentScore
{{score.student.student_id}} — {{score.student}}{{score.value}} / {{component.grade_total}}Edit
Avg. Score{{component.grade_avg_pre|floatformat:2}} / {{component.grade_total}}
+
+ {% if scoreless %} +
+ +

Scoreless

+
    + {% for student in scoreless %} +
  • {{student}}
  • + {% endfor %} +
+
+ {% endif %} +
+{% endblock %} diff --git a/src/core/templates/core/component_form.html b/src/core/templates/core/component_form.html new file mode 100644 index 0000000..ac07002 --- /dev/null +++ b/src/core/templates/core/component_form.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} +{% load helpers %} + +{% block head_title %}{{ component.name }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Edit Component

+

+ Delete +

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/component_list.html b/src/core/templates/core/component_list.html new file mode 100644 index 0000000..003f836 --- /dev/null +++ b/src/core/templates/core/component_list.html @@ -0,0 +1,16 @@ +{% extends 'base.html' %} + +{% block content %} +

Components

+ + + {% for component in component_list %} + +
{{ component }}
+ + {% empty %} + No components yet. + {% endfor %} + +
+{% endblock %} diff --git a/src/core/templates/core/component_manager.html b/src/core/templates/core/component_manager.html new file mode 100644 index 0000000..c950284 --- /dev/null +++ b/src/core/templates/core/component_manager.html @@ -0,0 +1,56 @@ +{% extends "base.html" %} +{% load helpers %} + +{% block head_title %}Enter Scores {{ component.name }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+

{{component}}

+
+
+ {% csrf_token %} +

Enter Scores

+ + + + + + {% if formset.errors %} + + {% endif %} + + + + {% for student in student_list %} + + + + + {% endfor %} + +
StudentScoreErrors
{{student.full_name}} + +   /   {{component.grade_total}} +
+ {{form.as_p}} +

+ or cancel +

+
+
+
+{% endblock %} diff --git a/src/core/templates/core/home.html b/src/core/templates/core/home.html new file mode 100644 index 0000000..b3b7a9c --- /dev/null +++ b/src/core/templates/core/home.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} + +{% block head_title %}Grades & Attendance Management Software |{% endblock %} + +{% block content %} +
+

Grades and Attendance Management Software

+
+{% endblock %} diff --git a/src/core/templates/core/schoolday_confirm_delete.html b/src/core/templates/core/schoolday_confirm_delete.html new file mode 100644 index 0000000..d825f8c --- /dev/null +++ b/src/core/templates/core/schoolday_confirm_delete.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} + +{% block head_title %}Delete Attendance | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+

Delete Attendance

+
+ {% csrf_token %} +

Are you sure you want to delete "{{ schoolday }}"?

+ {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/schoolday_create_form.html b/src/core/templates/core/schoolday_create_form.html new file mode 100644 index 0000000..12716b7 --- /dev/null +++ b/src/core/templates/core/schoolday_create_form.html @@ -0,0 +1,46 @@ +{% extends 'base.html' %} + +{% block head_title %}Attendance | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+

Take Attendance

+
+ {% csrf_token %} + {{ form.as_p }} + + + + + + + + + + + {% for student in student_list %} + + + + + + + {% endfor %} + +
StudentPresentTardyAbsent
{{ student.student_id }}   /   {{ student.full_name }}
+

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/schoolday_detail.html b/src/core/templates/core/schoolday_detail.html new file mode 100644 index 0000000..3a14b66 --- /dev/null +++ b/src/core/templates/core/schoolday_detail.html @@ -0,0 +1,46 @@ +{% extends 'base.html' %} +{% load helpers %} + +{% block head_title %}Attendance {{ schoolday.date }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Attendance {{ schoolday.date }}

+

Added:
+ Last updated:

+
+ Edit +
+
+ + + + + + + + + {% for entry in schoolday.attendanceentry_set.all %} + + + + + + {% endfor %} + +
StudentStatus
{{entry.student}}{{entry.get_status_display}}Edit
+
+
+{% endblock %} diff --git a/src/core/templates/core/schoolday_form.html b/src/core/templates/core/schoolday_form.html new file mode 100644 index 0000000..3d19e6b --- /dev/null +++ b/src/core/templates/core/schoolday_form.html @@ -0,0 +1,53 @@ +{% extends 'base.html' %} + +{% block head_title %}Edit Attendance | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Edit Attendance

+
+

Delete

+
+
+ {% csrf_token %} + {{ form.as_p }} + + + + + + + + + + + {% for entry in schoolday.attendanceentry_set.all %} + + + + + + + {% endfor %} + +
StudentPresentTardyAbsent
{{ entry.student.student_id }}   /   {{ entry.student.full_name }}
+

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/schoolday_list.html b/src/core/templates/core/schoolday_list.html new file mode 100644 index 0000000..36606cc --- /dev/null +++ b/src/core/templates/core/schoolday_list.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% load static %} + +{% block head_title %}Attendance | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Attendance

+ Take attendance → +
+
+ {% for schoolday in schoolday_list %} +
+

{{ schoolday.date }}

+ + + + + + + + + {% for entry in schoolday.attendanceentry_set.all %} + + + + + + {% empty %} + + + + {% endfor %} + +
StudentStatus
{{entry.student}}{{entry.get_status_display}}Edit
No attendance yet.
+
+ {% empty %} +
+

No attendance yet.

+
+ {% endfor %} + {% include 'core/partials/pagination.html' %} +
+{% endblock %} diff --git a/src/core/templates/core/schoolyear_create_form.html b/src/core/templates/core/schoolyear_create_form.html index 49f457f..8af9b10 100644 --- a/src/core/templates/core/schoolyear_create_form.html +++ b/src/core/templates/core/schoolyear_create_form.html @@ -1,12 +1,14 @@ {% extends 'base.html' %} {% block content %} -

+ New Schoolyear

-
- {% csrf_token %} - {{ form.as_p }} -

- or cancel -

-
+
+

+ New School year

+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
{% endblock %} diff --git a/src/core/templates/core/schoolyear_detail.html b/src/core/templates/core/schoolyear_detail.html index 0a02ad2..10b912e 100644 --- a/src/core/templates/core/schoolyear_detail.html +++ b/src/core/templates/core/schoolyear_detail.html @@ -1,34 +1,31 @@ {% extends 'base.html' %} -{% block head_title %}Project {{ schoolyear.name }} | {% endblock head_title %} +{% block head_title %}Year {{ schoolyear.year }} | {% endblock head_title %} {% block content %} {% endblock %} diff --git a/src/core/templates/core/schoolyear_form.html b/src/core/templates/core/schoolyear_form.html index 2b3238c..de7da06 100644 --- a/src/core/templates/core/schoolyear_form.html +++ b/src/core/templates/core/schoolyear_form.html @@ -1,12 +1,18 @@ {% extends 'base.html' %} +{% block head_title %}Edit Year {{ schoolyear.year }} | {% endblock head_title %} + {% block content %} -

Update Schoolyear

-
- {% csrf_token %} - {{ form.as_p }} -

- or cancel -

-
+
+
+

Edit Schoolyear

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
{% endblock %} diff --git a/src/core/templates/core/schoolyear_list.html b/src/core/templates/core/schoolyear_list.html index ca8583c..84deacc 100644 --- a/src/core/templates/core/schoolyear_list.html +++ b/src/core/templates/core/schoolyear_list.html @@ -8,38 +8,21 @@

School Years

- {% if perms.core.can_add_schoolyear %} + New Year - {% endif %}
- - - - - - - - - - - - {% for schoolyear in schoolyear_list %} - - - - - - - - {% empty %} - - - - {% endfor %} - -
CreatedYearStudentsComponentsLast Updated
No schoolyears yet.
+
+ {% for schoolyear in schoolyear_list %} + +

{{ schoolyear.year }}

+
Students: ({{ schoolyear.student__count }})   Subjects: ({{ schoolyear.subject__count }})
+ +
+ {% empty %} +

No school years yet

+ {% endfor %} +
{% include 'core/partials/pagination.html' %}
diff --git a/src/core/templates/core/score_confirm_delete.html b/src/core/templates/core/score_confirm_delete.html new file mode 100644 index 0000000..9fa1792 --- /dev/null +++ b/src/core/templates/core/score_confirm_delete.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% block head_title %}Delete Score {{ score.pk }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+

Delete Score

+
+ {% csrf_token %} +

Are you sure you want to delete "{{ score }}"?

+ {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/score_create_form.html b/src/core/templates/core/score_create_form.html new file mode 100644 index 0000000..1366c99 --- /dev/null +++ b/src/core/templates/core/score_create_form.html @@ -0,0 +1,12 @@ +{% extends 'base.html' %} + +{% block content %} +

+ New Score

+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+{% endblock %} diff --git a/src/core/templates/core/score_detail.html b/src/core/templates/core/score_detail.html new file mode 100644 index 0000000..7dcadeb --- /dev/null +++ b/src/core/templates/core/score_detail.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} + +{% block content %} +

Score

+

+ Edit + Delete +

+

{{ score }}

+{% endblock %} diff --git a/src/core/templates/core/score_form.html b/src/core/templates/core/score_form.html new file mode 100644 index 0000000..d1039a8 --- /dev/null +++ b/src/core/templates/core/score_form.html @@ -0,0 +1,39 @@ +{% extends "base.html" %} + +{% block head_title %}Edit score {{ score.pk }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Edit Score

+

{{ score.component.subject }}— {{ score.component.get_category_display }}: {{ score.component }}

+
+

Delete

+
+
+
+ {% csrf_token %} +

{{ score.student }}

+ {{ form.as_p }} +

+ or cancel +

+
+
+
+{% endblock %} diff --git a/src/core/templates/core/score_list.html b/src/core/templates/core/score_list.html new file mode 100644 index 0000000..f9a81d5 --- /dev/null +++ b/src/core/templates/core/score_list.html @@ -0,0 +1,16 @@ +{% extends 'base.html' %} + +{% block content %} +

Scores

+ + + {% for score in score_list %} + +
{{ score }}
+ + {% empty %} + No scores yet. + {% endfor %} + +
+{% endblock %} diff --git a/src/core/templates/core/student_detail.html b/src/core/templates/core/student_detail.html index 906a91f..52d59e7 100644 --- a/src/core/templates/core/student_detail.html +++ b/src/core/templates/core/student_detail.html @@ -1,7 +1,7 @@ {% extends 'base.html' %} {% load helpers %} -{% block head_title %}Student {{ student.student_id }} | {% endblock head_title %} +{% block head_title %}{{ student.student_id }} / {{ student.full_name }} | {% endblock head_title %} {% block breadcrumbs %} Edit -
-
- {% if student.allergies %} -
Allergies
-
{{ student.allergies }}
- {% endif %} +
+
Birthday
{{ student.dob }}
Age
{{ student.age }}
+
Allergies
+
{% if student.allergies %}{{ student.allergies }}{% endif %}
{% if student.address %}
Address
{{ student.address|linebreaksbr }}
{% endif %} + {% if student.tags.count > 0 %} +
Tags
+
+ {% for tag in student.tags.all %} +
{{ tag }}
{% if not forloop.last %}
{% endif %} + {% endfor %} +
+ {% endif %}

Grades

- - + + + + {% for subject in subject_list %} - - + + {% empty %} - + {% endfor %}
SubjectGrade
SubjectGrade
{{subject}}{{subject.grade|grade_as_percentage:subject.grade_total}}%
{{ subject }}
{{ subject.description }}
{{ subject.grade|grade_as_percentage:subject.grade_total }}%
No grades yet. To add a grade you will need to enter a score for this student on a component.No grades yet. You will need to enter a score for this student on a component.
-

Components

+

Scores

-
+
{% regroup score_list by component.subject as score_list %} {% for subject in score_list %} -

{{subject.grouper}}

- - - - - - - - - - - - - {% for score in subject.list %} - - - - - - - - - - {% endfor %} - -
Due DateComponentCategoryScoreTotalPercentage
{{score.component.due_date}}{{score.component}}{{score.component.get_category_display}}{{score.value}}{{score.component.grade_total}}{{score.grade_as_percentage}}%Change score
+
+

{{ subject.grouper }}

+ + + + + + + + + + + + + {% for score in subject.list %} + + + + + + + + + + {% endfor %} + +
Due DateComponentCategoryScoreTotalPercentage
{{ score.component.due_date }}{{ score.component }}{{ score.component.get_category_display }}{{ score.value }}{{ score.component.grade_total }}{{ score.grade_as_percentage }}%Edit
+
{% empty %}

No components graded yet.

{% endfor %} @@ -109,15 +119,14 @@ - - + {% for entry in status.list %} - - + + {% endfor %} diff --git a/src/core/templates/core/student_form.html b/src/core/templates/core/student_form.html index 534a797..cdcbfdb 100644 --- a/src/core/templates/core/student_form.html +++ b/src/core/templates/core/student_form.html @@ -1,12 +1,29 @@ {% extends 'base.html' %} +{% load helpers %} + +{% block head_title %}Edit Student {{ student.student_id }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} {% block content %} -

Update Student

- - {% csrf_token %} - {{ form.as_p }} -

- or cancel -

- +
+

Edit Student

+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+ +
{% endblock %} diff --git a/src/core/templates/core/student_list.html b/src/core/templates/core/student_list.html index d5e82d2..17e0d3c 100644 --- a/src/core/templates/core/student_list.html +++ b/src/core/templates/core/student_list.html @@ -18,13 +18,16 @@

Students

+ New Student - Student Tags → + Student Tags →
DateStatusDate
{{entry.day.date}}Update{{ entry.school_day.date }}Edit
- + + + + @@ -32,12 +35,19 @@ {% for student in student_list %} - - + + + + + {% empty %} - + {% endfor %} diff --git a/src/core/templates/core/studenttag_confirm_delete.html b/src/core/templates/core/studenttag_confirm_delete.html new file mode 100644 index 0000000..ab2ae03 --- /dev/null +++ b/src/core/templates/core/studenttag_confirm_delete.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} + +{% block head_title %}Delete Tag | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Delete Tag

+
+
+ {% csrf_token %} +

Are you sure you want to delete "{{ tag }}"?

+ {{ form.as_p }} +

+ or cancel +

+ +
+{% endblock %} diff --git a/src/core/templates/core/studenttag_create_form.html b/src/core/templates/core/studenttag_create_form.html new file mode 100644 index 0000000..2d58cec --- /dev/null +++ b/src/core/templates/core/studenttag_create_form.html @@ -0,0 +1,28 @@ +{% extends 'base.html' %} + +{% block head_title %}New Tag | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+

+ New Tag

+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+ +
+{% endblock %} diff --git a/src/core/templates/core/studenttag_detail.html b/src/core/templates/core/studenttag_detail.html new file mode 100644 index 0000000..1dc3826 --- /dev/null +++ b/src/core/templates/core/studenttag_detail.html @@ -0,0 +1,50 @@ +{% extends 'base.html' %} +{% load helpers %} + +{% block head_title %}Tag {{ tag }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

{{ tag }}

+
+ Edit +
+
+

Students with this tag

+
Student No. ↕Student No. ↕ NameAgeBirthdayAllergies Tags
No students yet.No students yet.
+ + + + + + + + {% for student in tag.student_set.all %} + + + + + {% empty %} + + + + {% endfor %} + +
Student No. ↕Name
No students tagged yet.
+
+ +{% endblock %} diff --git a/src/core/templates/core/studenttag_form.html b/src/core/templates/core/studenttag_form.html new file mode 100644 index 0000000..c273ace --- /dev/null +++ b/src/core/templates/core/studenttag_form.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} + +{% block head_title %}Edit Tag | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Edit Tag

+

+ Delete +

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/studenttag_list.html b/src/core/templates/core/studenttag_list.html new file mode 100644 index 0000000..da163a3 --- /dev/null +++ b/src/core/templates/core/studenttag_list.html @@ -0,0 +1,32 @@ +{% extends 'base.html' %} +{% load helpers %} + +{% block head_title %}Student Tags | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Student Tags

+ + New Tag +
+
+
+ {% for tag in studenttag_list %} + {{ tag }} + {% empty %} +

No tags yet.

+ {% endfor %} +
+
+{% endblock %} diff --git a/src/core/templates/core/subject_confirm_delete.html b/src/core/templates/core/subject_confirm_delete.html new file mode 100644 index 0000000..490ee4b --- /dev/null +++ b/src/core/templates/core/subject_confirm_delete.html @@ -0,0 +1,13 @@ +{% extends 'base.html' %} + +{% block content %} +

Delete Subject

+
+ {% csrf_token %} +

Are you sure you want to delete "{{ subject }}"?

+ {{ form.as_p }} +

+ or cancel +

+
+{% endblock %} diff --git a/src/core/templates/core/subject_create_form.html b/src/core/templates/core/subject_create_form.html new file mode 100644 index 0000000..d127d6c --- /dev/null +++ b/src/core/templates/core/subject_create_form.html @@ -0,0 +1,28 @@ +{% extends 'base.html' %} + +{% block head_title %}New Subject | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

+ New Subject

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/subject_detail.html b/src/core/templates/core/subject_detail.html new file mode 100644 index 0000000..d28f946 --- /dev/null +++ b/src/core/templates/core/subject_detail.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load helpers %} + +{% block head_title %}{{ subject }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

{{ subject.name }}

+
{{ subject.description }}
+

Added:
+ Last updated:

+
+ Edit +
+
+
+
+

Components

+ + New component +
+
+ + + + + + + + + + + + {% for component in subject.component_set.all %} + + + + + + + + {% empty %} + + + + {% endfor %} + +
Due DateDescriptionCategoryGrade TotalAvg Score
No components yet.
+
+
+{% endblock %} diff --git a/src/core/templates/core/subject_form.html b/src/core/templates/core/subject_form.html new file mode 100644 index 0000000..9cd3855 --- /dev/null +++ b/src/core/templates/core/subject_form.html @@ -0,0 +1,30 @@ +{% extends 'base.html' %} + +{% block head_title %}Edit Subject | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Edit Subject

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/subject_list.html b/src/core/templates/core/subject_list.html new file mode 100644 index 0000000..90089e5 --- /dev/null +++ b/src/core/templates/core/subject_list.html @@ -0,0 +1,48 @@ +{% extends 'base.html' %} +{% load static %} + +{% block head_title %}Subjects | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Subjects

+ + New Subject +
+ Tags → +
+ + + + + + + + + {% for subject in subject_list %} + + + + + {% empty %} + + + + {% endfor %} + +
NameComponents
No subjects yet.
+ {% include 'core/partials/pagination.html' %} +
+{% endblock %} diff --git a/src/core/templates/core/tag_confirm_delete.html b/src/core/templates/core/tag_confirm_delete.html new file mode 100644 index 0000000..179de31 --- /dev/null +++ b/src/core/templates/core/tag_confirm_delete.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} + +{% block head_title %}Delete Tag | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Delete Tag

+
+
+ {% csrf_token %} +

Are you sure you want to delete "{{ tag }}"?

+ {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/tag_create_form.html b/src/core/templates/core/tag_create_form.html new file mode 100644 index 0000000..7a1eee8 --- /dev/null +++ b/src/core/templates/core/tag_create_form.html @@ -0,0 +1,28 @@ +{% extends 'base.html' %} + +{% block head_title %}New Tag | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+

+ New Tag

+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/tag_detail.html b/src/core/templates/core/tag_detail.html new file mode 100644 index 0000000..a91e3ee --- /dev/null +++ b/src/core/templates/core/tag_detail.html @@ -0,0 +1,50 @@ +{% extends 'base.html' %} +{% load helpers %} + +{% block head_title %}Tag {{ tag }} | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

{{ tag }}

+
+ Edit +
+
+

Subjects with this tag

+ + + + + + + + + {% for component in tag.component_set.all %} + + + + + {% empty %} + + + + {% endfor %} + +
SubjectName
No components tagged yet.
+
+
+{% endblock %} diff --git a/src/core/templates/core/tag_form.html b/src/core/templates/core/tag_form.html new file mode 100644 index 0000000..3d0de72 --- /dev/null +++ b/src/core/templates/core/tag_form.html @@ -0,0 +1,35 @@ +{% extends 'base.html' %} + +{% block head_title %}Edit Tag | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+

Edit Tag

+

+ Delete +

+
+
+ {% csrf_token %} + {{ form.as_p }} +

+ or cancel +

+
+
+{% endblock %} diff --git a/src/core/templates/core/tag_list.html b/src/core/templates/core/tag_list.html new file mode 100644 index 0000000..86f1308 --- /dev/null +++ b/src/core/templates/core/tag_list.html @@ -0,0 +1,32 @@ +{% extends 'base.html' %} +{% load helpers %} + +{% block head_title %}Tags | {% endblock head_title %} + +{% block breadcrumbs %} + +{% endblock breadcrumbs %} + +{% block content %} +
+
+
+

Tags

+ + New Tag +
+
+
+ {% for tag in tag_list %} + {{ tag }} + {% empty %} +

No tags yet.

+ {% endfor %} +
+
+{% endblock %} diff --git a/src/accounts/templates/accounts/profile.html b/src/core/templates/core/today.html similarity index 60% rename from src/accounts/templates/accounts/profile.html rename to src/core/templates/core/today.html index 6a4349d..691b4bb 100644 --- a/src/accounts/templates/accounts/profile.html +++ b/src/core/templates/core/today.html @@ -1,19 +1,18 @@ {% extends 'base.html' %} {% load static %} +{% block head_title %}Today |{% endblock %} + {% block content %}
-

Welcome {{profile.user.first_name}} {{profile.user.last_name }} -
- Here's what's going on today -

+

Here's what's going on today

-

Birthdays

+

Birthdays this week

    {% for student in birthdays %} -
  • {{student}} is turning {{student.age|add:1}} on {{student.dob|date:"M j"}}
  • +
  • {{ student }} is turning {{ student.age|add:1 }} on {{ student.dob|date:"M j" }}
  • {% empty %}

    No Birthdays this next week.

    {% endfor %} @@ -24,7 +23,7 @@
      {% for component in components %}
    • - {{component.subject}}, {{component}} + {{component.subject}}, {{component}}
    • {% empty %}

      Nothing for today.

      @@ -34,7 +33,7 @@

      Today's Attendance

      {% for day in attendance %} -

      {{day.date}}

      +

      {{day.date}}

      @@ -43,17 +42,17 @@ - {% for entry in day.entry_set.all %} + {% for entry in day.attendanceentry_set.all %} - + {% endfor %}
      {{entry.student}} {{entry.get_status_display}}UpdateEdit
      {% empty %} -

      No attendance taken yet: Take attendance

      +

      No attendance taken yet: Take attendance →

      {% endfor %}
      @@ -61,7 +60,7 @@
        {% for component in ungraded_components %}
      • - {{component.subject}}, {{component}} + {{component.subject}}, {{component}}
      • {% empty %}

        Everything is graded to far.

        diff --git a/src/core/urls.py b/src/core/urls.py index 650e8fb..c93a8d8 100644 --- a/src/core/urls.py +++ b/src/core/urls.py @@ -2,6 +2,8 @@ from django.urls import path, include from . import views urlpatterns = [ + path('', views.HomeView.as_view(), name='home'), + # SchoolYears path('years/', include([ path( @@ -25,6 +27,7 @@ urlpatterns = [ views.SchoolYearUpdateView.as_view(), name='schoolyear-update' ), + path('today/', views.TodayView.as_view(), name='today'), # Students path('students/', include([ @@ -38,7 +41,7 @@ urlpatterns = [ views.StudentCreateView.as_view(), name='student-create' ), - path('/', include([ + path('/', include([ path( '', views.StudentDetailView.as_view(), @@ -55,6 +58,228 @@ urlpatterns = [ name='student-delete' ), ])), + + # StudentTags + path('tags/', include([ + path( + '', + views.StudentTagListView.as_view(), + name='stag-list' + ), + path( + 'new/', + views.StudentTagCreateView.as_view(), + name='stag-create' + ), + path('/', include([ + path( + '', + views.StudentTagDetailView.as_view(), + name='stag-detail' + ), + path( + 'update/', + views.StudentTagUpdateView.as_view(), + name='stag-update' + ), + path( + 'delete/', + views.StudentTagDeleteView.as_view(), + name='stag-delete' + ), + ])), + ])), + ])), + + # Subjects + path('subjects/', include([ + path( + '', + views.SubjectListView.as_view(), + name='subject-list' + ), + path( + 'new/', + views.SubjectCreateView.as_view(), + name='subject-create' + ), + path('/', include([ + path( + '', + views.SubjectDetailView.as_view(), + name='subject-detail' + ), + path( + 'update/', + views.SubjectUpdateView.as_view(), + name='subject-update' + ), + path( + 'delete/', + views.SubjectDeleteView.as_view(), + name='subject-delete' + ), + + # Components + path('components/', include([ + path( + '', + views.ComponentListView.as_view(), + name='component-list' + ), + path( + 'new/', + views.ComponentCreateView.as_view(), + name='component-create' + ), + path('/', include([ + path( + '', + views.ComponentDetailView.as_view(), + name='component-detail' + ), + path( + 'update/', + views.ComponentUpdateView.as_view(), + name='component-update' + ), + path( + 'delete/', + views.ComponentDeleteView.as_view(), + name='component-delete' + ), + path( + 'manage/', + views.ComponentManagerView.as_view(), + name='component-manager' + ), + ])), + ])), + ])), + + # Tags + path('tags/', include([ + path( + '', + views.TagListView.as_view(), + name='tag-list' + ), + path( + 'new/', + views.TagCreateView.as_view(), + name='tag-create' + ), + path('/', include([ + path( + '', + views.TagDetailView.as_view(), + name='tag-detail' + ), + path( + 'update/', + views.TagUpdateView.as_view(), + name='tag-update' + ), + path( + 'delete/', + views.TagDeleteView.as_view(), + name='tag-delete' + ), + ])), + ])), + ])), + + # SchoolDays + path('schooldays/', include([ + path( + '', + views.SchoolDayListView.as_view(), + name='schoolday-list' + ), + path( + 'new/', + views.SchoolDayCreateView.as_view(), + name='schoolday-create' + ), + path('/', include([ + path( + '', + views.SchoolDayDetailView.as_view(), + name='schoolday-detail' + ), + path( + 'update/', + views.SchoolDayUpdateView.as_view(), + name='schoolday-update' + ), + path( + 'delete/', + views.SchoolDayDeleteView.as_view(), + name='schoolday-delete' + ), + + # AttendanceEntries + path('entries/', include([ + path( + '', + views.AttendanceEntryListView.as_view(), + name='entry-list' + ), + path( + 'new/', + views.AttendanceEntryCreateView.as_view(), + name='entry-create' + ), + path('/', include([ + path( + '', + views.AttendanceEntryDetailView.as_view(), + name='entry-detail' + ), + path( + 'update/', + views.AttendanceEntryUpdateView.as_view(), + name='entry-update' + ), + path( + 'delete/', + views.AttendanceEntryDeleteView.as_view(), + name='entry-delete' + ), + ])), + ])), + ])), + ])), + + # Scores + path('scores/', include([ + path( + '', + views.ScoreListView.as_view(), + name='score-list' + ), + path( + 'new/', + views.ScoreCreateView.as_view(), + name='score-create' + ), + path('/', include([ + path( + '', + views.ScoreDetailView.as_view(), + name='score-detail' + ), + path( + 'update/', + views.ScoreUpdateView.as_view(), + name='score-update' + ), + path( + 'delete/', + views.ScoreDeleteView.as_view(), + name='score-delete' + ), + ])), ])), ])), ])), diff --git a/src/core/views.py b/src/core/views.py index 352f73e..c3f30f0 100644 --- a/src/core/views.py +++ b/src/core/views.py @@ -1,3 +1,4 @@ +import datetime as dt from django.conf import settings from django.utils import timezone from django.db import models @@ -33,28 +34,94 @@ from .models import ( ) from .forms import ( - SchoolYearCreateForm + StudentForm, + SchoolYearCreateForm, + ComponentCreateForm, + SchoolDayForm, + AttendanceEntryForm ) +# SEARCH +# # Look up Q objects for combining different fields in a single query +# from django.db.models import Q +# people = Person.objects.filter(Q(first_name__contains=query) | Q(last_name__contains=query) +# restaurants = Restaurant.objects.filter(restaurant_name__contains=query) +# pizzas = Pizza.objects.filter(pizza_name__contains=query) -class SchoolYearListView(ListView): +# Then combine the results, if you want + +# from itertools import chain +# results = chain(people, restaurants, pizzas) + + +class HomeView(TemplateView): + template_name = 'core/home.html' + + +class TodayView(LoginRequiredMixin, TemplateView): + template_name = 'core/today.html' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + today = timezone.localtime(timezone.now()).date() + enddate = today + dt.timedelta(days=7) + + context['birthdays'] = Student.objects.filter( + school_year__year=self.kwargs['year'], + dob__month=today.month, + dob__day__range=[today.day, enddate.day] + ).order_by('dob') + + context['components'] = Component.objects.filter( + due_date=today + ).select_related('subject') + + context['attendance'] = SchoolDay.objects.filter( + date=today + ).prefetch_related( + 'attendanceentry_set', + 'attendanceentry_set__student' + ) + + context['ungraded_components'] = Component.objects.filter( + subject__school_year__year=self.kwargs['year'], + due_date__lte=today, + finished_grading=False + ).select_related('subject') + + return context + + +class SchoolYearListView(LoginRequiredMixin, ListView): model = SchoolYear + paginate_by = 10 + + def get_queryset(self): + queryset = SchoolYear.objects.annotate( + models.Count('student', distinct=True), + models.Count('subject', distinct=True) + ).order_by('-year') + return queryset -class SchoolYearDetailView(DetailView): - model = SchoolYear - slug_url_kwarg = 'year' - slug_field = 'year' - - -class SchoolYearCreateView(SuccessMessageMixin, CreateView): +class SchoolYearCreateView( + LoginRequiredMixin, SuccessMessageMixin, CreateView +): model = SchoolYear success_message = 'SchoolYear created.' form_class = SchoolYearCreateForm template_name_suffix = '_create_form' -class SchoolYearUpdateView(SuccessMessageMixin, UpdateView): +class SchoolYearDetailView(LoginRequiredMixin, DetailView): + model = SchoolYear + slug_url_kwarg = 'year' + slug_field = 'year' + + +class SchoolYearUpdateView( + LoginRequiredMixin, SuccessMessageMixin, UpdateView +): model = SchoolYear slug_url_kwarg = 'year' slug_field = 'year' @@ -62,7 +129,7 @@ class SchoolYearUpdateView(SuccessMessageMixin, UpdateView): fields = '__all__' -class StudentListView(ListView): +class StudentListView(LoginRequiredMixin, ListView): model = Student paginate_by = 50 @@ -80,12 +147,35 @@ class StudentListView(ListView): return context -class StudentDetailView(DetailView): +class StudentCreateView(LoginRequiredMixin, SuccessMessageMixin, CreateView): model = Student - pk_url_kwarg = 'student_pk' + success_message = 'Student created.' + template_name_suffix = '_create_form' + form_class = StudentForm + + def form_valid(self, form): + form.instance.school_year = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return super().form_valid(form) def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class StudentDetailView(LoginRequiredMixin, DetailView): + model = Student + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) context['score_list'] = Score.objects.select_related( 'student' @@ -116,37 +206,619 @@ class StudentDetailView(DetailView): return context -class StudentCreateView(SuccessMessageMixin, CreateView): +class StudentUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): model = Student - success_message = 'Student created.' - template_name_suffix = '_create_form' - fields = [ - 'student_id', - 'first_name', - 'last_name', - 'address', - 'dob', - ] - - def form_valid(self, form): - form.instance.school_year = get_object_or_404(SchoolYear, year=self.kwargs['year']) - return super().form_valid(form) - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context['school_year'] = get_object_or_404(SchoolYear, year=self.kwargs['year']) - return context - - -class StudentUpdateView(SuccessMessageMixin, UpdateView): - model = Student - pk_url_kwarg = 'student_pk' success_message = 'Student saved.' fields = '__all__' -class StudentDeleteView(SuccessMessageMixin, DeleteView): +class StudentDeleteView(LoginRequiredMixin, SuccessMessageMixin, DeleteView): model = Student - pk_url_kwarg = 'student_pk' success_message = 'Student deleted.' success_url = reverse_lazy('student-list') + + +class StudentTagListView(LoginRequiredMixin, ListView): + model = StudentTag + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class StudentTagCreateView( + LoginRequiredMixin, SuccessMessageMixin, CreateView +): + model = StudentTag + success_message = 'Tag created.' + template_name_suffix = '_create_form' + fields = '__all__' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def get_success_url(self): + return reverse('core:stag-list', kwargs={ + 'year': self.kwargs['year'] + }) + + +class StudentTagDetailView(LoginRequiredMixin, DetailView): + model = StudentTag + pk_url_kwarg = 'stag_pk' + context_object_name = 'tag' + + def get_queryset(self): + queryset = StudentTag.objects.filter( + pk=self.kwargs.get(self.pk_url_kwarg) + ).prefetch_related( + Prefetch( + 'student_set', + queryset=Student.objects.filter( + school_year__year=self.kwargs['year'] + ) + ) + ) + return queryset + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class StudentTagUpdateView( + LoginRequiredMixin, SuccessMessageMixin, UpdateView +): + model = StudentTag + pk_url_kwarg = 'stag_pk' + context_object_name = 'tag' + success_message = 'Tag saved.' + fields = '__all__' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def get_success_url(self): + return reverse('core:stag-list', kwargs={ + 'year': self.kwargs['year'] + }) + + +class StudentTagDeleteView( + LoginRequiredMixin, SuccessMessageMixin, DeleteView +): + model = StudentTag + pk_url_kwarg = 'stag_pk' + context_object_name = 'tag' + success_message = 'Tag deleted.' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def get_success_url(self): + return reverse('core:stag-list', kwargs={ + 'year': self.kwargs['year'] + }) + + +class SubjectListView(LoginRequiredMixin, ListView): + model = Subject + paginate_by = 50 + + def get_queryset(self): + queryset = Subject.objects.filter( + school_year__year=self.kwargs['year'] + ).annotate( + models.Count('component') + ).order_by('name') + return queryset + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class SubjectCreateView(LoginRequiredMixin, SuccessMessageMixin, CreateView): + model = Subject + success_message = 'Subject created.' + template_name_suffix = '_create_form' + fields = [ + 'name', + 'description' + ] + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def form_valid(self, form): + form.instance.school_year = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return super().form_valid(form) + + +class SubjectDetailView(LoginRequiredMixin, DetailView): + model = Subject + + def get_queryset(self): + queryset = Subject.objects.filter( + pk=self.kwargs.get(self.pk_url_kwarg) + ).select_related( + 'school_year' + ).prefetch_related( + Prefetch( + 'component_set', + queryset=Component.objects.prefetch_related( + 'score_set' + ).annotate( + grade_avg_pre=Avg('score__value') + ) + ) + ) + return queryset + + +class SubjectUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): + model = Subject + success_message = 'Subject saved.' + fields = '__all__' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class SubjectDeleteView(LoginRequiredMixin, SuccessMessageMixin, DeleteView): + model = Subject + success_message = 'Subject deleted.' + success_url = reverse_lazy('subject-list') + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class TagListView(LoginRequiredMixin, ListView): + model = Tag + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class TagCreateView( + LoginRequiredMixin, SuccessMessageMixin, CreateView +): + model = Tag + success_message = 'Tag created.' + template_name_suffix = '_create_form' + fields = '__all__' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def get_success_url(self): + return reverse('core:tag-list', kwargs={ + 'year': self.kwargs['year'] + }) + + +class TagDetailView(LoginRequiredMixin, DetailView): + model = Tag + pk_url_kwarg = 'tag_pk' + + def get_queryset(self): + queryset = Tag.objects.filter( + pk=self.kwargs.get(self.pk_url_kwarg) + ).prefetch_related( + Prefetch( + 'component_set', + queryset=Component.objects.filter( + subject__school_year__year=self.kwargs['year'] + ) + ) + ) + return queryset + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class TagUpdateView( + LoginRequiredMixin, SuccessMessageMixin, UpdateView +): + model = Tag + pk_url_kwarg = 'tag_pk' + success_message = 'Tag saved.' + fields = '__all__' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def get_success_url(self): + return reverse('core:tag-list', kwargs={ + 'year': self.kwargs['year'] + }) + + +class TagDeleteView( + LoginRequiredMixin, SuccessMessageMixin, DeleteView +): + model = Tag + pk_url_kwarg = 'tag_pk' + success_message = 'Tag deleted.' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def get_success_url(self): + return reverse('core:tag-list', kwargs={ + 'year': self.kwargs['year'] + }) + + +class ComponentListView(LoginRequiredMixin, ListView): + model = Component + + +class ComponentCreateView(LoginRequiredMixin, SuccessMessageMixin, CreateView): + model = Component + success_message = 'Component created.' + template_name_suffix = '_create_form' + form_class = ComponentCreateForm + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + context['subject'] = get_object_or_404( + Subject, pk=self.kwargs['pk'] + ) + return context + + def form_valid(self, form): + form.instance.school_year = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + form.instance.subject = get_object_or_404( + Subject, pk=self.kwargs['pk'] + ) + return super().form_valid(form) + + +class ComponentDetailView(LoginRequiredMixin, DetailView): + model = Component + pk_url_kwarg = 'component_pk' + + def get_queryset(self): + queryset = Component.objects.filter( + pk=self.kwargs.get(self.pk_url_kwarg) + ).prefetch_related( + Prefetch( + 'score_set', + queryset=Score.objects.select_related('student') + ), + 'tags' + ).annotate( + grade_avg_pre=Avg('score__value') + ) + return queryset + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + cscores = Score.objects.filter( + component=self.object, + student=OuterRef('pk') + ) + context['scoreless'] = Student.objects.filter( + school_year__year=self.kwargs['year'] + ).exclude( + score__in=cscores + ) + return context + + +class ComponentUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): + model = Component + pk_url_kwarg = 'component_pk' + success_message = 'Component saved.' + fields = '__all__' + + def get_success_url(self): + return reverse('core:component-detail', kwargs={ + 'year': self.object.subject.school_year.year, + 'pk': self.object.subject.pk, + 'component_pk': self.object.pk + }) + + +class ComponentDeleteView(LoginRequiredMixin, SuccessMessageMixin, DeleteView): + model = Component + pk_url_kwarg = 'component_pk' + success_message = 'Component deleted.' + success_url = reverse_lazy('core:component-list') + + +class ComponentManagerView(LoginRequiredMixin, UpdateView): + model = Component + pk_url_kwarg = 'component_pk' + template_name_suffix = '_manager' + fields = ['finished_grading'] + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + cscores = Score.objects.filter( + component=self.object, + student=OuterRef('pk') + ) + context['student_list'] = Student.objects.filter( + school_year__year=self.kwargs['year'] + ).annotate( + cscore=Subquery(cscores.values('value')), + cscore_pk=Subquery(cscores.values('pk')) + ) + return context + + def get_success_url(self): + return reverse('core:component-detail', kwargs={ + 'year': self.object.subject.school_year.year, + 'pk': self.object.subject.pk, + 'component_pk': self.object.pk + }) + + def form_valid(self, form): + form.save() + for key, value in self.request.POST.items(): + if 'student' in key and value: + s_pk = key.split('_')[1] + obj, created = Score.objects.update_or_create( + component=self.object, + student=Student.objects.get(pk=s_pk), + defaults={'value': value} + ) + return super().form_valid(form) + + +class ScoreListView(LoginRequiredMixin, ListView): + model = Score + + +class ScoreCreateView(LoginRequiredMixin, SuccessMessageMixin, CreateView): + model = Score + success_message = 'Score created.' + template_name_suffix = '_create_form' + fields = '__all__' + + +class ScoreDetailView(LoginRequiredMixin, DetailView): + model = Score + + +class ScoreUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): + model = Score + success_message = 'Score saved.' + fields = [ + 'component', + 'value' + ] + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class ScoreDeleteView(LoginRequiredMixin, SuccessMessageMixin, DeleteView): + model = Score + success_message = 'Score deleted.' + + def get_success_url(self): + return reverse('core:schoolyear-detail', kwargs={ + 'year': self.kwargs['year'] + }) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class SchoolDayListView(LoginRequiredMixin, ListView): + model = SchoolDay + paginate_by = 7 + + def get_queryset(self): + queryset = SchoolDay.objects.filter( + school_year__year=self.kwargs['year'] + ) + return queryset + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class SchoolDayCreateView(LoginRequiredMixin, SuccessMessageMixin, CreateView): + model = SchoolDay + success_message = 'SchoolDay created.' + template_name_suffix = '_create_form' + form_class = SchoolDayForm + + def get_initial(self): + today = timezone.localtime(timezone.now()).date() + initial = { + 'date': today, + } + return initial + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['student_list'] = Student.objects.filter( + school_year__year=self.kwargs['year'] + ) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def form_valid(self, form): + form.instance.school_year = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + form.save() + for key, value in self.request.POST.items(): + if 'student' in key: + s = key.split('_')[1] + AttendanceEntry.objects.create( + school_day=form.instance, + student=Student.objects.get(pk=s), + status=value, + ) + return super().form_valid(form) + + +class SchoolDayDetailView(LoginRequiredMixin, DetailView): + model = SchoolDay + + +class SchoolDayUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): + model = SchoolDay + success_message = 'SchoolDay saved.' + form_class = SchoolDayForm + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + def form_valid(self, form): + form.save() + for key, value in self.request.POST.items(): + if 'student' in key: + s = key.split('_')[1] + AttendanceEntry.objects.filter( + school_day=self.object, + student=Student.objects.get(pk=s) + ).update(status=value) + return super().form_valid(form) + + +class SchoolDayDeleteView(LoginRequiredMixin, SuccessMessageMixin, DeleteView): + model = SchoolDay + success_message = 'SchoolDay deleted.' + + def get_success_url(self): + return reverse('core:schoolday-list', kwargs={ + 'year': self.kwargs['year'] + }) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context['school_year'] = get_object_or_404( + SchoolYear, year=self.kwargs['year'] + ) + return context + + +class AttendanceEntryListView(LoginRequiredMixin, ListView): + model = AttendanceEntry + + +class AttendanceEntryCreateView(LoginRequiredMixin, SuccessMessageMixin, CreateView): + model = AttendanceEntry + success_message = 'Entry created.' + template_name_suffix = '_create_form' + fields = '__all__' + + +class AttendanceEntryDetailView(LoginRequiredMixin, DetailView): + model = AttendanceEntry + pk_url_kwarg = 'entry_pk' + context_object_name = 'entry' + + +class AttendanceEntryUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): + model = AttendanceEntry + pk_url_kwarg = 'entry_pk' + context_object_name = 'entry' + success_message = 'Entry saved.' + form_class = AttendanceEntryForm + + def get_success_url(self): + return reverse('core:schoolday-detail', kwargs={ + 'year': self.kwargs['year'], + 'pk': self.kwargs['pk'] + }) + + +class AttendanceEntryDeleteView(LoginRequiredMixin, SuccessMessageMixin, DeleteView): + model = AttendanceEntry + pk_url_kwarg = 'entry_pk' + context_object_name = 'entry' + success_message = 'Entry deleted.' + + def get_success_url(self): + return reverse('core:schoolday-detail', kwargs={ + 'year': self.kwargs['year'], + 'pk': self.kwargs['pk'] + }) diff --git a/src/db.json b/src/db.json new file mode 100644 index 0000000..6947768 --- /dev/null +++ b/src/db.json @@ -0,0 +1,32184 @@ +[{ + "model": "accounts.user", + "pk": 1, + "fields": { + "password": "pbkdf2_sha256$260000$aTKHsuAquvDhNm4ZuW3S9X$cv8sIEXzoXir/f8s6z+EjVbMm3u8o0i1wDelXl36JP0=", + "last_login": "2022-07-27T17:05:49.473Z", + "is_superuser": true, + "username": "nathanchapman", + "first_name": "Nathan", + "last_name": "Chapman", + "email": "debug@nathanjchapman.com", + "is_staff": true, + "is_active": true, + "date_joined": "2021-09-01T15:30:45.341Z", + "groups": [], + "user_permissions": [], + "timezone": "US/Mountain" + } +}, { + "model": "accounts.user", + "pk": 2, + "fields": { + "password": "pbkdf2_sha256$260000$SwqpdHKCFUb7mgYjS1Phx5$9klfoErMoXiYtQ4/8GFFwx9dcX2z49Q3pHT0BjhhQzc=", + "last_login": "2022-05-11T14:31:28.281Z", + "is_superuser": false, + "username": "laurastam", + "first_name": "Laura", + "last_name": "Stam", + "email": "laurastam@protonmail.com", + "is_staff": false, + "is_active": true, + "date_joined": "2021-09-01T15:36:27Z", + "groups": [], + "user_permissions": [], + "timezone": "US/Mountain" + } +}, { + "model": "core.schoolyear", + "pk": 1, + "fields": { + "year": 2021, + "created_at": "2022-06-29T21:27:05.127Z", + "updated_at": "2022-06-29T21:27:05.130Z" + } +}, { + "model": "core.studenttag", + "pk": 1, + "fields": { + "name": "SIT", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.studenttag", + "pk": 2, + "fields": { + "name": "Glasses", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.studenttag", + "pk": 3, + "fields": { + "name": "IEP ELA", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.studenttag", + "pk": 4, + "fields": { + "name": "IEP Behavioral", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.studenttag", + "pk": 5, + "fields": { + "name": "IEP Math", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.student", + "pk": 3, + "fields": { + "school_year": 1, + "student_id": 1, + "first_name": "B", + "last_name": "B", + "address": "", + "dob": "2014-05-08", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 4, + "fields": { + "school_year": 1, + "student_id": 2, + "first_name": "M", + "last_name": "B", + "address": "", + "dob": "2013-12-26", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 5, + "fields": { + "school_year": 1, + "student_id": 7, + "first_name": "R", + "last_name": "W", + "address": "", + "dob": "2014-06-05", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 6, + "fields": { + "school_year": 1, + "student_id": 10, + "first_name": "F", + "last_name": "L", + "address": "", + "dob": "2014-03-21", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [2] + } +}, { + "model": "core.student", + "pk": 7, + "fields": { + "school_year": 1, + "student_id": 13, + "first_name": "Z", + "last_name": "R", + "address": "", + "dob": "2014-04-07", + "allergies": "Strawberries", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [2] + } +}, { + "model": "core.student", + "pk": 9, + "fields": { + "school_year": 1, + "student_id": 8, + "first_name": "G", + "last_name": "B", + "address": "", + "dob": "2014-06-05", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [2] + } +}, { + "model": "core.student", + "pk": 11, + "fields": { + "school_year": 1, + "student_id": 14, + "first_name": "G", + "last_name": "R", + "address": "", + "dob": "2014-05-05", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 12, + "fields": { + "school_year": 1, + "student_id": 5, + "first_name": "M", + "last_name": "J", + "address": "", + "dob": "2013-12-03", + "allergies": "Seasonal/Hay Fever", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [2] + } +}, { + "model": "core.student", + "pk": 13, + "fields": { + "school_year": 1, + "student_id": 3, + "first_name": "E", + "last_name": "B", + "address": "", + "dob": "2013-10-20", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 14, + "fields": { + "school_year": 1, + "student_id": 6, + "first_name": "K", + "last_name": "S", + "address": "", + "dob": "2014-03-03", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 15, + "fields": { + "school_year": 1, + "student_id": 12, + "first_name": "M", + "last_name": "M", + "address": "", + "dob": "2014-08-12", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 16, + "fields": { + "school_year": 1, + "student_id": 15, + "first_name": "T", + "last_name": "S", + "address": "", + "dob": "2012-12-11", + "allergies": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [2] + } +}, { + "model": "core.student", + "pk": 17, + "fields": { + "school_year": 1, + "student_id": 4, + "first_name": "C", + "last_name": "C", + "address": "", + "dob": "2014-01-10", + "allergies": "Grass & Dirt", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [2] + } +}, { + "model": "core.student", + "pk": 18, + "fields": { + "school_year": 1, + "student_id": 9, + "first_name": "A", + "last_name": "J", + "address": "", + "dob": "2014-08-06", + "allergies": "Some medicines", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.student", + "pk": 19, + "fields": { + "school_year": 1, + "student_id": 11, + "first_name": "R", + "last_name": "M", + "address": "", + "dob": "2014-08-04", + "allergies": "Pork", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [2] + } +}, { + "model": "core.tag", + "pk": 1, + "fields": { + "name": "2.0A.4 Math Facts", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.tag", + "pk": 2, + "fields": { + "name": "2.NBT.1 Place Value", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.tag", + "pk": 3, + "fields": { + "name": "2.W.3 Narrative", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.tag", + "pk": 4, + "fields": { + "name": "2.RL.2 Recount Stories", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.subject", + "pk": 2, + "fields": { + "school_year": 1, + "name": "Math Facts", + "description": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.subject", + "pk": 3, + "fields": { + "school_year": 1, + "name": "Math Core", + "description": "2.MD.8 Money Word Problems Assessment", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.subject", + "pk": 4, + "fields": { + "school_year": 1, + "name": "Writing", + "description": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.subject", + "pk": 5, + "fields": { + "school_year": 1, + "name": "Reading", + "description": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.subject", + "pk": 6, + "fields": { + "school_year": 1, + "name": "Phonics", + "description": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.subject", + "pk": 7, + "fields": { + "school_year": 1, + "name": "Literacy", + "description": "", + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z" + } +}, { + "model": "core.component", + "pk": 3, + "fields": { + "subject": 2, + "name": "2.OA.4 Math Facts +1 Timed Sheet (2 min.)", + "category": "ASSIGNMENT", + "due_date": "2021-08-27", + "grade_total": 22, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [1] + } +}, { + "model": "core.component", + "pk": 8, + "fields": { + "subject": 2, + "name": "2.0A.4 Math Facts Remaining Facts to 10, pt. 1", + "category": "QUIZ", + "due_date": "2021-09-24", + "grade_total": 7, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [1] + } +}, { + "model": "core.component", + "pk": 10, + "fields": { + "subject": 2, + "name": "2.0A.4 Math Facts Plus 2 & 10 Pairs", + "category": "QUIZ", + "due_date": "2021-09-17", + "grade_total": 9, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [1] + } +}, { + "model": "core.component", + "pk": 12, + "fields": { + "subject": 4, + "name": "2.L.1f Complete Sentence", + "category": "TEST", + "due_date": "2021-09-14", + "grade_total": 20, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 16, + "fields": { + "subject": 6, + "name": "Unit 1 Test", + "category": "TEST", + "due_date": "2021-10-01", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 17, + "fields": { + "subject": 6, + "name": "Unit 2", + "category": "TEST", + "due_date": "2021-09-24", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 21, + "fields": { + "subject": 2, + "name": "2.OA.4 Math Facts Sums to 10 Exit Ticket", + "category": "QUIZ", + "due_date": "2021-10-01", + "grade_total": 9, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 22, + "fields": { + "subject": 3, + "name": "2.NBT.1 - Outcome Assessment", + "category": "TEST", + "due_date": "2021-09-29", + "grade_total": 22, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 23, + "fields": { + "subject": 6, + "name": "Unit 2 - Retake", + "category": "TEST", + "due_date": "2021-10-08", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 24, + "fields": { + "subject": 2, + "name": "2.0A.4 Math Facts Sums to 10 (pt.2)", + "category": "QUIZ", + "due_date": "2021-10-08", + "grade_total": 15, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 25, + "fields": { + "subject": 2, + "name": "2.0A.4 Add 0-3 Touch Dots", + "category": "QUIZ", + "due_date": "2021-10-08", + "grade_total": 20, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 26, + "fields": { + "subject": 6, + "name": "Unit 2 - Retake 2", + "category": "TEST", + "due_date": "2021-10-15", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 27, + "fields": { + "subject": 2, + "name": "2.OA.4 Math Facts Add to 10 Outcome", + "category": "TEST", + "due_date": "2021-10-14", + "grade_total": 25, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 28, + "fields": { + "subject": 2, + "name": "2.0A.4 Math Facts Neighbor Numbers", + "category": "QUIZ", + "due_date": "2021-11-12", + "grade_total": 11, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 29, + "fields": { + "subject": 2, + "name": "2.0A.4 Add 0-7 Touch Dots", + "category": "QUIZ", + "due_date": "2021-11-12", + "grade_total": 20, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 30, + "fields": { + "subject": 6, + "name": "Unit 3 Test", + "category": "TEST", + "due_date": "2021-10-28", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 31, + "fields": { + "subject": 3, + "name": "2.NBT.8 Mentally Add 10 or 100", + "category": "TEST", + "due_date": "2021-10-20", + "grade_total": 15, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 35, + "fields": { + "subject": 5, + "name": "2.RL.2 Oral Retell", + "category": "TEST", + "due_date": "2021-10-08", + "grade_total": 30, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 37, + "fields": { + "subject": 2, + "name": "2.OA.4 Math Facts +1", + "category": "QUIZ", + "due_date": "2021-08-30", + "grade_total": 8, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 38, + "fields": { + "subject": 6, + "name": "Unit 4 Test", + "category": "TEST", + "due_date": "2021-11-17", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 39, + "fields": { + "subject": 2, + "name": "2.OA.4 Math Facts Subtract 5, 6, & 7", + "category": "QUIZ", + "due_date": "2021-11-19", + "grade_total": 6, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 41, + "fields": { + "subject": 5, + "name": "2.RI.2 Main Idea and Details", + "category": "TEST", + "due_date": "2021-11-19", + "grade_total": 15, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 42, + "fields": { + "subject": 6, + "name": "L1 - Unit 5 Test", + "category": "TEST", + "due_date": "2021-12-09", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 43, + "fields": { + "subject": 2, + "name": "2.OA.4 Differences within 10 Assessment", + "category": "TEST", + "due_date": "2021-12-10", + "grade_total": 45, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 44, + "fields": { + "subject": 3, + "name": "2.NBT.5 Add w/ Regrouping, Subtract w/out Outcome", + "category": "TEST", + "due_date": "2021-12-10", + "grade_total": 15, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 45, + "fields": { + "subject": 4, + "name": "2.L1 Nouns and Pronouns Assessment", + "category": "TEST", + "due_date": "2021-12-03", + "grade_total": 12, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 46, + "fields": { + "subject": 3, + "name": "NBT.7 Assessment Subtraction with Regrouping", + "category": "TEST", + "due_date": "2022-01-21", + "grade_total": 18, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 47, + "fields": { + "subject": 5, + "name": "RI.1 Assessment Ask and Answer Questions", + "category": "TEST", + "due_date": "2022-02-11", + "grade_total": 16, + "finished_grading": false, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 48, + "fields": { + "subject": 5, + "name": "RI.5 Assessment Text Features", + "category": "TEST", + "due_date": "2022-01-14", + "grade_total": 14, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 49, + "fields": { + "subject": 4, + "name": "W.3 Narrative Writing", + "category": "TEST", + "due_date": "2021-12-10", + "grade_total": 100, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 50, + "fields": { + "subject": 7, + "name": "Spelling List 2A - Quiz", + "category": "QUIZ", + "due_date": "2022-03-11", + "grade_total": 156, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 51, + "fields": { + "subject": 7, + "name": "Spelling List 2A - Test", + "category": "TEST", + "due_date": "2022-03-18", + "grade_total": 52, + "finished_grading": false, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 52, + "fields": { + "subject": 7, + "name": "Spelling List 2B - Quiz", + "category": "QUIZ", + "due_date": "2022-04-01", + "grade_total": 50, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 53, + "fields": { + "subject": 7, + "name": "Spelling List 2B - Test", + "category": "TEST", + "due_date": "2022-04-08", + "grade_total": 50, + "finished_grading": false, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 54, + "fields": { + "subject": 7, + "name": "Phonograms 1-72 - Quiz", + "category": "QUIZ", + "due_date": "2022-04-13", + "grade_total": 72, + "finished_grading": false, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 55, + "fields": { + "subject": 7, + "name": "Spelling List 2C - quiz", + "category": "QUIZ", + "due_date": "2022-04-15", + "grade_total": 50, + "finished_grading": false, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 56, + "fields": { + "subject": 7, + "name": "Spelling List 2C - test", + "category": "TEST", + "due_date": "2022-04-22", + "grade_total": 50, + "finished_grading": false, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 57, + "fields": { + "subject": 3, + "name": "2.MD.8 Money Word Problems", + "category": "TEST", + "due_date": "2022-02-18", + "grade_total": 16, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 58, + "fields": { + "subject": 3, + "name": "2.MD.1 - Measuring Length", + "category": "TEST", + "due_date": "2022-03-18", + "grade_total": 28, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.component", + "pk": 59, + "fields": { + "subject": 3, + "name": "2.MD.7 Time", + "category": "TEST", + "due_date": "2022-04-22", + "grade_total": 15, + "finished_grading": true, + "created_at": "2022-07-26T21:41:56.643Z", + "updated_at": "2022-07-27T22:09:03.372Z", + "tags": [] + } +}, { + "model": "core.score", + "pk": 18, + "fields": { + "component": 3, + "student": 5, + "value": 11 + } +}, { + "model": "core.score", + "pk": 19, + "fields": { + "component": 3, + "student": 18, + "value": 22 + } +}, { + "model": "core.score", + "pk": 20, + "fields": { + "component": 3, + "student": 3, + "value": 20 + } +}, { + "model": "core.score", + "pk": 21, + "fields": { + "component": 3, + "student": 17, + "value": 22 + } +}, { + "model": "core.score", + "pk": 22, + "fields": { + "component": 3, + "student": 13, + "value": 9 + } +}, { + "model": "core.score", + "pk": 23, + "fields": { + "component": 3, + "student": 6, + "value": 22 + } +}, { + "model": "core.score", + "pk": 24, + "fields": { + "component": 3, + "student": 9, + "value": 20 + } +}, { + "model": "core.score", + "pk": 25, + "fields": { + "component": 3, + "student": 11, + "value": 22 + } +}, { + "model": "core.score", + "pk": 26, + "fields": { + "component": 3, + "student": 14, + "value": 13 + } +}, { + "model": "core.score", + "pk": 27, + "fields": { + "component": 3, + "student": 4, + "value": 22 + } +}, { + "model": "core.score", + "pk": 28, + "fields": { + "component": 3, + "student": 12, + "value": 22 + } +}, { + "model": "core.score", + "pk": 29, + "fields": { + "component": 3, + "student": 15, + "value": 19 + } +}, { + "model": "core.score", + "pk": 30, + "fields": { + "component": 3, + "student": 19, + "value": 6 + } +}, { + "model": "core.score", + "pk": 32, + "fields": { + "component": 3, + "student": 16, + "value": 11 + } +}, { + "model": "core.score", + "pk": 33, + "fields": { + "component": 3, + "student": 7, + "value": 22 + } +}, { + "model": "core.score", + "pk": 96, + "fields": { + "component": 8, + "student": 4, + "value": 7 + } +}, { + "model": "core.score", + "pk": 97, + "fields": { + "component": 8, + "student": 13, + "value": 7 + } +}, { + "model": "core.score", + "pk": 98, + "fields": { + "component": 8, + "student": 17, + "value": 7 + } +}, { + "model": "core.score", + "pk": 99, + "fields": { + "component": 8, + "student": 12, + "value": 7 + } +}, { + "model": "core.score", + "pk": 100, + "fields": { + "component": 8, + "student": 14, + "value": 7 + } +}, { + "model": "core.score", + "pk": 101, + "fields": { + "component": 8, + "student": 5, + "value": 7 + } +}, { + "model": "core.score", + "pk": 102, + "fields": { + "component": 8, + "student": 9, + "value": 5 + } +}, { + "model": "core.score", + "pk": 103, + "fields": { + "component": 8, + "student": 18, + "value": 7 + } +}, { + "model": "core.score", + "pk": 104, + "fields": { + "component": 8, + "student": 6, + "value": 7 + } +}, { + "model": "core.score", + "pk": 105, + "fields": { + "component": 8, + "student": 19, + "value": 0 + } +}, { + "model": "core.score", + "pk": 106, + "fields": { + "component": 8, + "student": 15, + "value": 7 + } +}, { + "model": "core.score", + "pk": 107, + "fields": { + "component": 8, + "student": 7, + "value": 7 + } +}, { + "model": "core.score", + "pk": 108, + "fields": { + "component": 8, + "student": 11, + "value": 7 + } +}, { + "model": "core.score", + "pk": 109, + "fields": { + "component": 8, + "student": 16, + "value": 7 + } +}, { + "model": "core.score", + "pk": 126, + "fields": { + "component": 10, + "student": 3, + "value": 9 + } +}, { + "model": "core.score", + "pk": 127, + "fields": { + "component": 10, + "student": 4, + "value": 9 + } +}, { + "model": "core.score", + "pk": 128, + "fields": { + "component": 10, + "student": 13, + "value": 9 + } +}, { + "model": "core.score", + "pk": 129, + "fields": { + "component": 10, + "student": 17, + "value": 9 + } +}, { + "model": "core.score", + "pk": 130, + "fields": { + "component": 10, + "student": 12, + "value": 9 + } +}, { + "model": "core.score", + "pk": 131, + "fields": { + "component": 10, + "student": 14, + "value": 9 + } +}, { + "model": "core.score", + "pk": 132, + "fields": { + "component": 10, + "student": 5, + "value": 9 + } +}, { + "model": "core.score", + "pk": 133, + "fields": { + "component": 10, + "student": 9, + "value": 9 + } +}, { + "model": "core.score", + "pk": 134, + "fields": { + "component": 10, + "student": 18, + "value": 9 + } +}, { + "model": "core.score", + "pk": 135, + "fields": { + "component": 10, + "student": 6, + "value": 9 + } +}, { + "model": "core.score", + "pk": 136, + "fields": { + "component": 10, + "student": 15, + "value": 9 + } +}, { + "model": "core.score", + "pk": 137, + "fields": { + "component": 10, + "student": 7, + "value": 9 + } +}, { + "model": "core.score", + "pk": 138, + "fields": { + "component": 10, + "student": 11, + "value": 9 + } +}, { + "model": "core.score", + "pk": 139, + "fields": { + "component": 10, + "student": 16, + "value": 7 + } +}, { + "model": "core.score", + "pk": 141, + "fields": { + "component": 12, + "student": 3, + "value": 17 + } +}, { + "model": "core.score", + "pk": 142, + "fields": { + "component": 12, + "student": 4, + "value": 19 + } +}, { + "model": "core.score", + "pk": 143, + "fields": { + "component": 12, + "student": 13, + "value": 15 + } +}, { + "model": "core.score", + "pk": 144, + "fields": { + "component": 12, + "student": 17, + "value": 14 + } +}, { + "model": "core.score", + "pk": 145, + "fields": { + "component": 12, + "student": 12, + "value": 18 + } +}, { + "model": "core.score", + "pk": 146, + "fields": { + "component": 12, + "student": 14, + "value": 12 + } +}, { + "model": "core.score", + "pk": 147, + "fields": { + "component": 12, + "student": 5, + "value": 15 + } +}, { + "model": "core.score", + "pk": 148, + "fields": { + "component": 12, + "student": 9, + "value": 17 + } +}, { + "model": "core.score", + "pk": 149, + "fields": { + "component": 12, + "student": 18, + "value": 17 + } +}, { + "model": "core.score", + "pk": 150, + "fields": { + "component": 12, + "student": 6, + "value": 16 + } +}, { + "model": "core.score", + "pk": 151, + "fields": { + "component": 12, + "student": 19, + "value": 12 + } +}, { + "model": "core.score", + "pk": 152, + "fields": { + "component": 12, + "student": 15, + "value": 12 + } +}, { + "model": "core.score", + "pk": 153, + "fields": { + "component": 12, + "student": 7, + "value": 10 + } +}, { + "model": "core.score", + "pk": 154, + "fields": { + "component": 12, + "student": 11, + "value": 14 + } +}, { + "model": "core.score", + "pk": 155, + "fields": { + "component": 12, + "student": 16, + "value": 15 + } +}, { + "model": "core.score", + "pk": 204, + "fields": { + "component": 16, + "student": 4, + "value": 100 + } +}, { + "model": "core.score", + "pk": 205, + "fields": { + "component": 16, + "student": 13, + "value": 72 + } +}, { + "model": "core.score", + "pk": 206, + "fields": { + "component": 16, + "student": 17, + "value": 64 + } +}, { + "model": "core.score", + "pk": 207, + "fields": { + "component": 16, + "student": 12, + "value": 96 + } +}, { + "model": "core.score", + "pk": 208, + "fields": { + "component": 16, + "student": 14, + "value": 48 + } +}, { + "model": "core.score", + "pk": 209, + "fields": { + "component": 16, + "student": 5, + "value": 96 + } +}, { + "model": "core.score", + "pk": 210, + "fields": { + "component": 16, + "student": 9, + "value": 48 + } +}, { + "model": "core.score", + "pk": 211, + "fields": { + "component": 16, + "student": 18, + "value": 96 + } +}, { + "model": "core.score", + "pk": 212, + "fields": { + "component": 16, + "student": 6, + "value": 88 + } +}, { + "model": "core.score", + "pk": 213, + "fields": { + "component": 16, + "student": 19, + "value": 16 + } +}, { + "model": "core.score", + "pk": 214, + "fields": { + "component": 16, + "student": 15, + "value": 36 + } +}, { + "model": "core.score", + "pk": 215, + "fields": { + "component": 16, + "student": 7, + "value": 48 + } +}, { + "model": "core.score", + "pk": 216, + "fields": { + "component": 16, + "student": 11, + "value": 76 + } +}, { + "model": "core.score", + "pk": 217, + "fields": { + "component": 16, + "student": 16, + "value": 68 + } +}, { + "model": "core.score", + "pk": 219, + "fields": { + "component": 17, + "student": 4, + "value": 96 + } +}, { + "model": "core.score", + "pk": 220, + "fields": { + "component": 17, + "student": 13, + "value": 48 + } +}, { + "model": "core.score", + "pk": 221, + "fields": { + "component": 17, + "student": 17, + "value": 44 + } +}, { + "model": "core.score", + "pk": 222, + "fields": { + "component": 17, + "student": 12, + "value": 68 + } +}, { + "model": "core.score", + "pk": 223, + "fields": { + "component": 17, + "student": 14, + "value": 28 + } +}, { + "model": "core.score", + "pk": 224, + "fields": { + "component": 17, + "student": 5, + "value": 60 + } +}, { + "model": "core.score", + "pk": 225, + "fields": { + "component": 17, + "student": 9, + "value": 36 + } +}, { + "model": "core.score", + "pk": 226, + "fields": { + "component": 17, + "student": 18, + "value": 76 + } +}, { + "model": "core.score", + "pk": 227, + "fields": { + "component": 17, + "student": 6, + "value": 60 + } +}, { + "model": "core.score", + "pk": 228, + "fields": { + "component": 17, + "student": 19, + "value": 8 + } +}, { + "model": "core.score", + "pk": 229, + "fields": { + "component": 17, + "student": 15, + "value": 32 + } +}, { + "model": "core.score", + "pk": 230, + "fields": { + "component": 17, + "student": 7, + "value": 12 + } +}, { + "model": "core.score", + "pk": 231, + "fields": { + "component": 17, + "student": 11, + "value": 60 + } +}, { + "model": "core.score", + "pk": 232, + "fields": { + "component": 17, + "student": 16, + "value": 68 + } +}, { + "model": "core.score", + "pk": 265, + "fields": { + "component": 21, + "student": 4, + "value": 9 + } +}, { + "model": "core.score", + "pk": 266, + "fields": { + "component": 21, + "student": 13, + "value": 9 + } +}, { + "model": "core.score", + "pk": 267, + "fields": { + "component": 21, + "student": 17, + "value": 6 + } +}, { + "model": "core.score", + "pk": 268, + "fields": { + "component": 21, + "student": 12, + "value": 9 + } +}, { + "model": "core.score", + "pk": 269, + "fields": { + "component": 21, + "student": 14, + "value": 7 + } +}, { + "model": "core.score", + "pk": 270, + "fields": { + "component": 21, + "student": 5, + "value": 8 + } +}, { + "model": "core.score", + "pk": 271, + "fields": { + "component": 21, + "student": 9, + "value": 9 + } +}, { + "model": "core.score", + "pk": 272, + "fields": { + "component": 21, + "student": 18, + "value": 9 + } +}, { + "model": "core.score", + "pk": 273, + "fields": { + "component": 21, + "student": 6, + "value": 8 + } +}, { + "model": "core.score", + "pk": 274, + "fields": { + "component": 21, + "student": 19, + "value": 3 + } +}, { + "model": "core.score", + "pk": 275, + "fields": { + "component": 21, + "student": 15, + "value": 8 + } +}, { + "model": "core.score", + "pk": 276, + "fields": { + "component": 21, + "student": 7, + "value": 9 + } +}, { + "model": "core.score", + "pk": 277, + "fields": { + "component": 21, + "student": 11, + "value": 9 + } +}, { + "model": "core.score", + "pk": 278, + "fields": { + "component": 21, + "student": 16, + "value": 2 + } +}, { + "model": "core.score", + "pk": 280, + "fields": { + "component": 22, + "student": 4, + "value": 20 + } +}, { + "model": "core.score", + "pk": 281, + "fields": { + "component": 22, + "student": 13, + "value": 20 + } +}, { + "model": "core.score", + "pk": 282, + "fields": { + "component": 22, + "student": 17, + "value": 21 + } +}, { + "model": "core.score", + "pk": 283, + "fields": { + "component": 22, + "student": 12, + "value": 21 + } +}, { + "model": "core.score", + "pk": 284, + "fields": { + "component": 22, + "student": 14, + "value": 20 + } +}, { + "model": "core.score", + "pk": 285, + "fields": { + "component": 22, + "student": 5, + "value": 18 + } +}, { + "model": "core.score", + "pk": 286, + "fields": { + "component": 22, + "student": 9, + "value": 22 + } +}, { + "model": "core.score", + "pk": 287, + "fields": { + "component": 22, + "student": 18, + "value": 22 + } +}, { + "model": "core.score", + "pk": 288, + "fields": { + "component": 22, + "student": 6, + "value": 20 + } +}, { + "model": "core.score", + "pk": 289, + "fields": { + "component": 22, + "student": 15, + "value": 19 + } +}, { + "model": "core.score", + "pk": 290, + "fields": { + "component": 22, + "student": 7, + "value": 19 + } +}, { + "model": "core.score", + "pk": 291, + "fields": { + "component": 22, + "student": 11, + "value": 21 + } +}, { + "model": "core.score", + "pk": 292, + "fields": { + "component": 22, + "student": 16, + "value": 22 + } +}, { + "model": "core.score", + "pk": 294, + "fields": { + "component": 23, + "student": 4, + "value": 100 + } +}, { + "model": "core.score", + "pk": 295, + "fields": { + "component": 23, + "student": 13, + "value": 68 + } +}, { + "model": "core.score", + "pk": 296, + "fields": { + "component": 23, + "student": 17, + "value": 68 + } +}, { + "model": "core.score", + "pk": 297, + "fields": { + "component": 23, + "student": 12, + "value": 96 + } +}, { + "model": "core.score", + "pk": 298, + "fields": { + "component": 23, + "student": 14, + "value": 64 + } +}, { + "model": "core.score", + "pk": 299, + "fields": { + "component": 23, + "student": 5, + "value": 96 + } +}, { + "model": "core.score", + "pk": 300, + "fields": { + "component": 23, + "student": 9, + "value": 56 + } +}, { + "model": "core.score", + "pk": 301, + "fields": { + "component": 23, + "student": 18, + "value": 100 + } +}, { + "model": "core.score", + "pk": 302, + "fields": { + "component": 23, + "student": 6, + "value": 88 + } +}, { + "model": "core.score", + "pk": 303, + "fields": { + "component": 23, + "student": 19, + "value": 12 + } +}, { + "model": "core.score", + "pk": 304, + "fields": { + "component": 23, + "student": 15, + "value": 60 + } +}, { + "model": "core.score", + "pk": 305, + "fields": { + "component": 23, + "student": 7, + "value": 28 + } +}, { + "model": "core.score", + "pk": 306, + "fields": { + "component": 23, + "student": 11, + "value": 84 + } +}, { + "model": "core.score", + "pk": 307, + "fields": { + "component": 23, + "student": 16, + "value": 100 + } +}, { + "model": "core.score", + "pk": 309, + "fields": { + "component": 22, + "student": 19, + "value": 21 + } +}, { + "model": "core.score", + "pk": 310, + "fields": { + "component": 24, + "student": 4, + "value": 15 + } +}, { + "model": "core.score", + "pk": 311, + "fields": { + "component": 24, + "student": 13, + "value": 15 + } +}, { + "model": "core.score", + "pk": 312, + "fields": { + "component": 24, + "student": 17, + "value": 15 + } +}, { + "model": "core.score", + "pk": 313, + "fields": { + "component": 24, + "student": 12, + "value": 15 + } +}, { + "model": "core.score", + "pk": 314, + "fields": { + "component": 24, + "student": 14, + "value": 15 + } +}, { + "model": "core.score", + "pk": 315, + "fields": { + "component": 24, + "student": 5, + "value": 14 + } +}, { + "model": "core.score", + "pk": 316, + "fields": { + "component": 24, + "student": 9, + "value": 15 + } +}, { + "model": "core.score", + "pk": 317, + "fields": { + "component": 24, + "student": 18, + "value": 14 + } +}, { + "model": "core.score", + "pk": 318, + "fields": { + "component": 24, + "student": 6, + "value": 15 + } +}, { + "model": "core.score", + "pk": 319, + "fields": { + "component": 24, + "student": 15, + "value": 15 + } +}, { + "model": "core.score", + "pk": 320, + "fields": { + "component": 24, + "student": 7, + "value": 15 + } +}, { + "model": "core.score", + "pk": 321, + "fields": { + "component": 24, + "student": 11, + "value": 15 + } +}, { + "model": "core.score", + "pk": 322, + "fields": { + "component": 24, + "student": 16, + "value": 14 + } +}, { + "model": "core.score", + "pk": 324, + "fields": { + "component": 25, + "student": 19, + "value": 20 + } +}, { + "model": "core.score", + "pk": 325, + "fields": { + "component": 26, + "student": 4, + "value": 100 + } +}, { + "model": "core.score", + "pk": 326, + "fields": { + "component": 26, + "student": 13, + "value": 100 + } +}, { + "model": "core.score", + "pk": 327, + "fields": { + "component": 26, + "student": 17, + "value": 72 + } +}, { + "model": "core.score", + "pk": 328, + "fields": { + "component": 26, + "student": 14, + "value": 68 + } +}, { + "model": "core.score", + "pk": 329, + "fields": { + "component": 26, + "student": 5, + "value": 100 + } +}, { + "model": "core.score", + "pk": 330, + "fields": { + "component": 26, + "student": 9, + "value": 80 + } +}, { + "model": "core.score", + "pk": 331, + "fields": { + "component": 26, + "student": 18, + "value": 100 + } +}, { + "model": "core.score", + "pk": 332, + "fields": { + "component": 26, + "student": 6, + "value": 96 + } +}, { + "model": "core.score", + "pk": 333, + "fields": { + "component": 26, + "student": 19, + "value": 4 + } +}, { + "model": "core.score", + "pk": 334, + "fields": { + "component": 26, + "student": 15, + "value": 76 + } +}, { + "model": "core.score", + "pk": 335, + "fields": { + "component": 26, + "student": 7, + "value": 16 + } +}, { + "model": "core.score", + "pk": 336, + "fields": { + "component": 26, + "student": 11, + "value": 92 + } +}, { + "model": "core.score", + "pk": 337, + "fields": { + "component": 26, + "student": 16, + "value": 96 + } +}, { + "model": "core.score", + "pk": 339, + "fields": { + "component": 28, + "student": 3, + "value": 11 + } +}, { + "model": "core.score", + "pk": 340, + "fields": { + "component": 28, + "student": 4, + "value": 11 + } +}, { + "model": "core.score", + "pk": 341, + "fields": { + "component": 28, + "student": 13, + "value": 10 + } +}, { + "model": "core.score", + "pk": 342, + "fields": { + "component": 28, + "student": 17, + "value": 11 + } +}, { + "model": "core.score", + "pk": 343, + "fields": { + "component": 28, + "student": 14, + "value": 11 + } +}, { + "model": "core.score", + "pk": 344, + "fields": { + "component": 28, + "student": 5, + "value": 11 + } +}, { + "model": "core.score", + "pk": 345, + "fields": { + "component": 28, + "student": 9, + "value": 11 + } +}, { + "model": "core.score", + "pk": 346, + "fields": { + "component": 28, + "student": 18, + "value": 11 + } +}, { + "model": "core.score", + "pk": 347, + "fields": { + "component": 28, + "student": 6, + "value": 11 + } +}, { + "model": "core.score", + "pk": 348, + "fields": { + "component": 28, + "student": 15, + "value": 11 + } +}, { + "model": "core.score", + "pk": 349, + "fields": { + "component": 28, + "student": 7, + "value": 11 + } +}, { + "model": "core.score", + "pk": 350, + "fields": { + "component": 28, + "student": 11, + "value": 11 + } +}, { + "model": "core.score", + "pk": 351, + "fields": { + "component": 28, + "student": 16, + "value": 10 + } +}, { + "model": "core.score", + "pk": 353, + "fields": { + "component": 29, + "student": 19, + "value": 20 + } +}, { + "model": "core.score", + "pk": 354, + "fields": { + "component": 30, + "student": 3, + "value": 88 + } +}, { + "model": "core.score", + "pk": 355, + "fields": { + "component": 30, + "student": 4, + "value": 96 + } +}, { + "model": "core.score", + "pk": 356, + "fields": { + "component": 30, + "student": 13, + "value": 84 + } +}, { + "model": "core.score", + "pk": 357, + "fields": { + "component": 30, + "student": 17, + "value": 68 + } +}, { + "model": "core.score", + "pk": 358, + "fields": { + "component": 30, + "student": 12, + "value": 96 + } +}, { + "model": "core.score", + "pk": 359, + "fields": { + "component": 30, + "student": 14, + "value": 52 + } +}, { + "model": "core.score", + "pk": 360, + "fields": { + "component": 30, + "student": 5, + "value": 96 + } +}, { + "model": "core.score", + "pk": 361, + "fields": { + "component": 30, + "student": 9, + "value": 72 + } +}, { + "model": "core.score", + "pk": 362, + "fields": { + "component": 30, + "student": 18, + "value": 88 + } +}, { + "model": "core.score", + "pk": 363, + "fields": { + "component": 30, + "student": 6, + "value": 88 + } +}, { + "model": "core.score", + "pk": 364, + "fields": { + "component": 30, + "student": 19, + "value": 68 + } +}, { + "model": "core.score", + "pk": 365, + "fields": { + "component": 30, + "student": 15, + "value": 80 + } +}, { + "model": "core.score", + "pk": 366, + "fields": { + "component": 30, + "student": 7, + "value": 60 + } +}, { + "model": "core.score", + "pk": 367, + "fields": { + "component": 30, + "student": 11, + "value": 72 + } +}, { + "model": "core.score", + "pk": 368, + "fields": { + "component": 30, + "student": 16, + "value": 100 + } +}, { + "model": "core.score", + "pk": 370, + "fields": { + "component": 31, + "student": 3, + "value": 14 + } +}, { + "model": "core.score", + "pk": 371, + "fields": { + "component": 31, + "student": 4, + "value": 15 + } +}, { + "model": "core.score", + "pk": 372, + "fields": { + "component": 31, + "student": 13, + "value": 14 + } +}, { + "model": "core.score", + "pk": 373, + "fields": { + "component": 31, + "student": 17, + "value": 12 + } +}, { + "model": "core.score", + "pk": 374, + "fields": { + "component": 31, + "student": 12, + "value": 15 + } +}, { + "model": "core.score", + "pk": 375, + "fields": { + "component": 31, + "student": 14, + "value": 13 + } +}, { + "model": "core.score", + "pk": 376, + "fields": { + "component": 31, + "student": 5, + "value": 15 + } +}, { + "model": "core.score", + "pk": 377, + "fields": { + "component": 31, + "student": 9, + "value": 15 + } +}, { + "model": "core.score", + "pk": 378, + "fields": { + "component": 31, + "student": 18, + "value": 15 + } +}, { + "model": "core.score", + "pk": 379, + "fields": { + "component": 31, + "student": 6, + "value": 15 + } +}, { + "model": "core.score", + "pk": 380, + "fields": { + "component": 31, + "student": 19, + "value": 15 + } +}, { + "model": "core.score", + "pk": 381, + "fields": { + "component": 31, + "student": 15, + "value": 14 + } +}, { + "model": "core.score", + "pk": 382, + "fields": { + "component": 31, + "student": 7, + "value": 13 + } +}, { + "model": "core.score", + "pk": 383, + "fields": { + "component": 31, + "student": 11, + "value": 15 + } +}, { + "model": "core.score", + "pk": 384, + "fields": { + "component": 31, + "student": 16, + "value": 15 + } +}, { + "model": "core.score", + "pk": 398, + "fields": { + "component": 35, + "student": 3, + "value": 28 + } +}, { + "model": "core.score", + "pk": 415, + "fields": { + "component": 22, + "student": 3, + "value": 19 + } +}, { + "model": "core.score", + "pk": 431, + "fields": { + "component": 35, + "student": 4, + "value": 25 + } +}, { + "model": "core.score", + "pk": 432, + "fields": { + "component": 35, + "student": 13, + "value": 26 + } +}, { + "model": "core.score", + "pk": 433, + "fields": { + "component": 35, + "student": 17, + "value": 24 + } +}, { + "model": "core.score", + "pk": 434, + "fields": { + "component": 35, + "student": 12, + "value": 27 + } +}, { + "model": "core.score", + "pk": 435, + "fields": { + "component": 35, + "student": 14, + "value": 25 + } +}, { + "model": "core.score", + "pk": 436, + "fields": { + "component": 35, + "student": 5, + "value": 27 + } +}, { + "model": "core.score", + "pk": 437, + "fields": { + "component": 35, + "student": 9, + "value": 28 + } +}, { + "model": "core.score", + "pk": 438, + "fields": { + "component": 35, + "student": 18, + "value": 28 + } +}, { + "model": "core.score", + "pk": 439, + "fields": { + "component": 35, + "student": 6, + "value": 28 + } +}, { + "model": "core.score", + "pk": 440, + "fields": { + "component": 35, + "student": 19, + "value": 28 + } +}, { + "model": "core.score", + "pk": 441, + "fields": { + "component": 35, + "student": 15, + "value": 28 + } +}, { + "model": "core.score", + "pk": 442, + "fields": { + "component": 35, + "student": 7, + "value": 25 + } +}, { + "model": "core.score", + "pk": 443, + "fields": { + "component": 35, + "student": 11, + "value": 27 + } +}, { + "model": "core.score", + "pk": 444, + "fields": { + "component": 35, + "student": 16, + "value": 27 + } +}, { + "model": "core.score", + "pk": 446, + "fields": { + "component": 27, + "student": 3, + "value": 24 + } +}, { + "model": "core.score", + "pk": 447, + "fields": { + "component": 27, + "student": 4, + "value": 25 + } +}, { + "model": "core.score", + "pk": 448, + "fields": { + "component": 27, + "student": 13, + "value": 25 + } +}, { + "model": "core.score", + "pk": 449, + "fields": { + "component": 27, + "student": 17, + "value": 24 + } +}, { + "model": "core.score", + "pk": 450, + "fields": { + "component": 27, + "student": 12, + "value": 25 + } +}, { + "model": "core.score", + "pk": 451, + "fields": { + "component": 27, + "student": 14, + "value": 22 + } +}, { + "model": "core.score", + "pk": 452, + "fields": { + "component": 27, + "student": 5, + "value": 25 + } +}, { + "model": "core.score", + "pk": 453, + "fields": { + "component": 27, + "student": 9, + "value": 25 + } +}, { + "model": "core.score", + "pk": 454, + "fields": { + "component": 27, + "student": 18, + "value": 25 + } +}, { + "model": "core.score", + "pk": 455, + "fields": { + "component": 27, + "student": 6, + "value": 24 + } +}, { + "model": "core.score", + "pk": 456, + "fields": { + "component": 27, + "student": 19, + "value": 25 + } +}, { + "model": "core.score", + "pk": 457, + "fields": { + "component": 27, + "student": 15, + "value": 25 + } +}, { + "model": "core.score", + "pk": 458, + "fields": { + "component": 27, + "student": 7, + "value": 25 + } +}, { + "model": "core.score", + "pk": 459, + "fields": { + "component": 27, + "student": 11, + "value": 24 + } +}, { + "model": "core.score", + "pk": 460, + "fields": { + "component": 27, + "student": 16, + "value": 21 + } +}, { + "model": "core.score", + "pk": 462, + "fields": { + "component": 37, + "student": 3, + "value": 8 + } +}, { + "model": "core.score", + "pk": 463, + "fields": { + "component": 37, + "student": 4, + "value": 3 + } +}, { + "model": "core.score", + "pk": 464, + "fields": { + "component": 37, + "student": 13, + "value": 6 + } +}, { + "model": "core.score", + "pk": 465, + "fields": { + "component": 37, + "student": 12, + "value": 8 + } +}, { + "model": "core.score", + "pk": 466, + "fields": { + "component": 37, + "student": 5, + "value": 8 + } +}, { + "model": "core.score", + "pk": 467, + "fields": { + "component": 37, + "student": 18, + "value": 8 + } +}, { + "model": "core.score", + "pk": 468, + "fields": { + "component": 37, + "student": 6, + "value": 8 + } +}, { + "model": "core.score", + "pk": 469, + "fields": { + "component": 37, + "student": 19, + "value": 1 + } +}, { + "model": "core.score", + "pk": 470, + "fields": { + "component": 37, + "student": 15, + "value": 8 + } +}, { + "model": "core.score", + "pk": 471, + "fields": { + "component": 37, + "student": 7, + "value": 8 + } +}, { + "model": "core.score", + "pk": 472, + "fields": { + "component": 37, + "student": 11, + "value": 8 + } +}, { + "model": "core.score", + "pk": 474, + "fields": { + "component": 38, + "student": 3, + "value": 88 + } +}, { + "model": "core.score", + "pk": 475, + "fields": { + "component": 38, + "student": 13, + "value": 88 + } +}, { + "model": "core.score", + "pk": 476, + "fields": { + "component": 38, + "student": 17, + "value": 44 + } +}, { + "model": "core.score", + "pk": 477, + "fields": { + "component": 38, + "student": 12, + "value": 92 + } +}, { + "model": "core.score", + "pk": 478, + "fields": { + "component": 38, + "student": 14, + "value": 48 + } +}, { + "model": "core.score", + "pk": 479, + "fields": { + "component": 38, + "student": 5, + "value": 92 + } +}, { + "model": "core.score", + "pk": 480, + "fields": { + "component": 38, + "student": 9, + "value": 56 + } +}, { + "model": "core.score", + "pk": 481, + "fields": { + "component": 38, + "student": 6, + "value": 80 + } +}, { + "model": "core.score", + "pk": 482, + "fields": { + "component": 38, + "student": 15, + "value": 64 + } +}, { + "model": "core.score", + "pk": 483, + "fields": { + "component": 38, + "student": 7, + "value": 44 + } +}, { + "model": "core.score", + "pk": 484, + "fields": { + "component": 38, + "student": 11, + "value": 72 + } +}, { + "model": "core.score", + "pk": 485, + "fields": { + "component": 38, + "student": 16, + "value": 96 + } +}, { + "model": "core.score", + "pk": 487, + "fields": { + "component": 38, + "student": 4, + "value": 92 + } +}, { + "model": "core.score", + "pk": 488, + "fields": { + "component": 38, + "student": 19, + "value": 56 + } +}, { + "model": "core.score", + "pk": 489, + "fields": { + "component": 39, + "student": 3, + "value": 6 + } +}, { + "model": "core.score", + "pk": 490, + "fields": { + "component": 39, + "student": 4, + "value": 6 + } +}, { + "model": "core.score", + "pk": 491, + "fields": { + "component": 39, + "student": 13, + "value": 6 + } +}, { + "model": "core.score", + "pk": 492, + "fields": { + "component": 39, + "student": 17, + "value": 4 + } +}, { + "model": "core.score", + "pk": 493, + "fields": { + "component": 39, + "student": 12, + "value": 6 + } +}, { + "model": "core.score", + "pk": 494, + "fields": { + "component": 39, + "student": 14, + "value": 6 + } +}, { + "model": "core.score", + "pk": 495, + "fields": { + "component": 39, + "student": 5, + "value": 6 + } +}, { + "model": "core.score", + "pk": 496, + "fields": { + "component": 39, + "student": 9, + "value": 6 + } +}, { + "model": "core.score", + "pk": 497, + "fields": { + "component": 39, + "student": 19, + "value": 6 + } +}, { + "model": "core.score", + "pk": 498, + "fields": { + "component": 39, + "student": 15, + "value": 5 + } +}, { + "model": "core.score", + "pk": 499, + "fields": { + "component": 39, + "student": 7, + "value": 5 + } +}, { + "model": "core.score", + "pk": 500, + "fields": { + "component": 39, + "student": 11, + "value": 6 + } +}, { + "model": "core.score", + "pk": 501, + "fields": { + "component": 39, + "student": 16, + "value": 6 + } +}, { + "model": "core.score", + "pk": 519, + "fields": { + "component": 41, + "student": 4, + "value": 15 + } +}, { + "model": "core.score", + "pk": 520, + "fields": { + "component": 41, + "student": 13, + "value": 12 + } +}, { + "model": "core.score", + "pk": 521, + "fields": { + "component": 41, + "student": 17, + "value": 14 + } +}, { + "model": "core.score", + "pk": 522, + "fields": { + "component": 41, + "student": 12, + "value": 13 + } +}, { + "model": "core.score", + "pk": 523, + "fields": { + "component": 41, + "student": 14, + "value": 14 + } +}, { + "model": "core.score", + "pk": 524, + "fields": { + "component": 41, + "student": 5, + "value": 13 + } +}, { + "model": "core.score", + "pk": 525, + "fields": { + "component": 41, + "student": 9, + "value": 13 + } +}, { + "model": "core.score", + "pk": 526, + "fields": { + "component": 41, + "student": 18, + "value": 13 + } +}, { + "model": "core.score", + "pk": 527, + "fields": { + "component": 41, + "student": 6, + "value": 14 + } +}, { + "model": "core.score", + "pk": 528, + "fields": { + "component": 41, + "student": 19, + "value": 15 + } +}, { + "model": "core.score", + "pk": 529, + "fields": { + "component": 41, + "student": 15, + "value": 13 + } +}, { + "model": "core.score", + "pk": 530, + "fields": { + "component": 41, + "student": 7, + "value": 12 + } +}, { + "model": "core.score", + "pk": 531, + "fields": { + "component": 41, + "student": 11, + "value": 14 + } +}, { + "model": "core.score", + "pk": 532, + "fields": { + "component": 41, + "student": 16, + "value": 13 + } +}, { + "model": "core.score", + "pk": 533, + "fields": { + "component": 42, + "student": 17, + "value": 80 + } +}, { + "model": "core.score", + "pk": 534, + "fields": { + "component": 42, + "student": 14, + "value": 84 + } +}, { + "model": "core.score", + "pk": 535, + "fields": { + "component": 42, + "student": 15, + "value": 96 + } +}, { + "model": "core.score", + "pk": 536, + "fields": { + "component": 42, + "student": 7, + "value": 84 + } +}, { + "model": "core.score", + "pk": 544, + "fields": { + "component": 43, + "student": 3, + "value": 45 + } +}, { + "model": "core.score", + "pk": 545, + "fields": { + "component": 43, + "student": 4, + "value": 45 + } +}, { + "model": "core.score", + "pk": 546, + "fields": { + "component": 43, + "student": 13, + "value": 45 + } +}, { + "model": "core.score", + "pk": 547, + "fields": { + "component": 43, + "student": 17, + "value": 45 + } +}, { + "model": "core.score", + "pk": 548, + "fields": { + "component": 43, + "student": 12, + "value": 45 + } +}, { + "model": "core.score", + "pk": 549, + "fields": { + "component": 43, + "student": 14, + "value": 40 + } +}, { + "model": "core.score", + "pk": 550, + "fields": { + "component": 43, + "student": 5, + "value": 44 + } +}, { + "model": "core.score", + "pk": 551, + "fields": { + "component": 43, + "student": 9, + "value": 43 + } +}, { + "model": "core.score", + "pk": 552, + "fields": { + "component": 43, + "student": 18, + "value": 43 + } +}, { + "model": "core.score", + "pk": 553, + "fields": { + "component": 43, + "student": 6, + "value": 45 + } +}, { + "model": "core.score", + "pk": 554, + "fields": { + "component": 43, + "student": 19, + "value": 43 + } +}, { + "model": "core.score", + "pk": 555, + "fields": { + "component": 43, + "student": 15, + "value": 44 + } +}, { + "model": "core.score", + "pk": 556, + "fields": { + "component": 43, + "student": 7, + "value": 45 + } +}, { + "model": "core.score", + "pk": 557, + "fields": { + "component": 43, + "student": 11, + "value": 45 + } +}, { + "model": "core.score", + "pk": 558, + "fields": { + "component": 43, + "student": 16, + "value": 44 + } +}, { + "model": "core.score", + "pk": 559, + "fields": { + "component": 44, + "student": 3, + "value": 12 + } +}, { + "model": "core.score", + "pk": 560, + "fields": { + "component": 44, + "student": 4, + "value": 14 + } +}, { + "model": "core.score", + "pk": 561, + "fields": { + "component": 44, + "student": 13, + "value": 14 + } +}, { + "model": "core.score", + "pk": 562, + "fields": { + "component": 44, + "student": 17, + "value": 15 + } +}, { + "model": "core.score", + "pk": 563, + "fields": { + "component": 44, + "student": 12, + "value": 15 + } +}, { + "model": "core.score", + "pk": 564, + "fields": { + "component": 44, + "student": 14, + "value": 12 + } +}, { + "model": "core.score", + "pk": 565, + "fields": { + "component": 44, + "student": 5, + "value": 12 + } +}, { + "model": "core.score", + "pk": 566, + "fields": { + "component": 44, + "student": 9, + "value": 13 + } +}, { + "model": "core.score", + "pk": 567, + "fields": { + "component": 44, + "student": 18, + "value": 15 + } +}, { + "model": "core.score", + "pk": 568, + "fields": { + "component": 44, + "student": 6, + "value": 14 + } +}, { + "model": "core.score", + "pk": 569, + "fields": { + "component": 44, + "student": 19, + "value": 15 + } +}, { + "model": "core.score", + "pk": 570, + "fields": { + "component": 44, + "student": 15, + "value": 14 + } +}, { + "model": "core.score", + "pk": 571, + "fields": { + "component": 44, + "student": 7, + "value": 13 + } +}, { + "model": "core.score", + "pk": 572, + "fields": { + "component": 44, + "student": 11, + "value": 12 + } +}, { + "model": "core.score", + "pk": 573, + "fields": { + "component": 44, + "student": 16, + "value": 14 + } +}, { + "model": "core.score", + "pk": 574, + "fields": { + "component": 45, + "student": 3, + "value": 11 + } +}, { + "model": "core.score", + "pk": 575, + "fields": { + "component": 45, + "student": 4, + "value": 12 + } +}, { + "model": "core.score", + "pk": 576, + "fields": { + "component": 45, + "student": 13, + "value": 10 + } +}, { + "model": "core.score", + "pk": 577, + "fields": { + "component": 45, + "student": 17, + "value": 10 + } +}, { + "model": "core.score", + "pk": 578, + "fields": { + "component": 45, + "student": 12, + "value": 12 + } +}, { + "model": "core.score", + "pk": 579, + "fields": { + "component": 45, + "student": 14, + "value": 9 + } +}, { + "model": "core.score", + "pk": 580, + "fields": { + "component": 45, + "student": 5, + "value": 11 + } +}, { + "model": "core.score", + "pk": 581, + "fields": { + "component": 45, + "student": 9, + "value": 10 + } +}, { + "model": "core.score", + "pk": 582, + "fields": { + "component": 45, + "student": 18, + "value": 12 + } +}, { + "model": "core.score", + "pk": 583, + "fields": { + "component": 45, + "student": 6, + "value": 10 + } +}, { + "model": "core.score", + "pk": 584, + "fields": { + "component": 45, + "student": 19, + "value": 10 + } +}, { + "model": "core.score", + "pk": 585, + "fields": { + "component": 45, + "student": 15, + "value": 8 + } +}, { + "model": "core.score", + "pk": 586, + "fields": { + "component": 45, + "student": 7, + "value": 7 + } +}, { + "model": "core.score", + "pk": 587, + "fields": { + "component": 45, + "student": 11, + "value": 11 + } +}, { + "model": "core.score", + "pk": 588, + "fields": { + "component": 45, + "student": 16, + "value": 11 + } +}, { + "model": "core.score", + "pk": 589, + "fields": { + "component": 41, + "student": 3, + "value": 14 + } +}, { + "model": "core.score", + "pk": 590, + "fields": { + "component": 46, + "student": 3, + "value": 18 + } +}, { + "model": "core.score", + "pk": 591, + "fields": { + "component": 46, + "student": 4, + "value": 18 + } +}, { + "model": "core.score", + "pk": 592, + "fields": { + "component": 46, + "student": 13, + "value": 17 + } +}, { + "model": "core.score", + "pk": 593, + "fields": { + "component": 46, + "student": 17, + "value": 14 + } +}, { + "model": "core.score", + "pk": 594, + "fields": { + "component": 46, + "student": 12, + "value": 18 + } +}, { + "model": "core.score", + "pk": 595, + "fields": { + "component": 46, + "student": 14, + "value": 13 + } +}, { + "model": "core.score", + "pk": 596, + "fields": { + "component": 46, + "student": 5, + "value": 13 + } +}, { + "model": "core.score", + "pk": 597, + "fields": { + "component": 46, + "student": 9, + "value": 17 + } +}, { + "model": "core.score", + "pk": 598, + "fields": { + "component": 46, + "student": 18, + "value": 15 + } +}, { + "model": "core.score", + "pk": 599, + "fields": { + "component": 46, + "student": 6, + "value": 18 + } +}, { + "model": "core.score", + "pk": 600, + "fields": { + "component": 46, + "student": 19, + "value": 12 + } +}, { + "model": "core.score", + "pk": 601, + "fields": { + "component": 46, + "student": 15, + "value": 12 + } +}, { + "model": "core.score", + "pk": 602, + "fields": { + "component": 46, + "student": 7, + "value": 10 + } +}, { + "model": "core.score", + "pk": 603, + "fields": { + "component": 46, + "student": 11, + "value": 18 + } +}, { + "model": "core.score", + "pk": 604, + "fields": { + "component": 46, + "student": 16, + "value": 16 + } +}, { + "model": "core.score", + "pk": 605, + "fields": { + "component": 47, + "student": 4, + "value": 16 + } +}, { + "model": "core.score", + "pk": 606, + "fields": { + "component": 47, + "student": 17, + "value": 15 + } +}, { + "model": "core.score", + "pk": 607, + "fields": { + "component": 47, + "student": 14, + "value": 13 + } +}, { + "model": "core.score", + "pk": 608, + "fields": { + "component": 47, + "student": 5, + "value": 16 + } +}, { + "model": "core.score", + "pk": 609, + "fields": { + "component": 47, + "student": 9, + "value": 13 + } +}, { + "model": "core.score", + "pk": 610, + "fields": { + "component": 47, + "student": 18, + "value": 16 + } +}, { + "model": "core.score", + "pk": 611, + "fields": { + "component": 47, + "student": 6, + "value": 13 + } +}, { + "model": "core.score", + "pk": 612, + "fields": { + "component": 47, + "student": 19, + "value": 16 + } +}, { + "model": "core.score", + "pk": 613, + "fields": { + "component": 47, + "student": 15, + "value": 9 + } +}, { + "model": "core.score", + "pk": 614, + "fields": { + "component": 47, + "student": 11, + "value": 12 + } +}, { + "model": "core.score", + "pk": 615, + "fields": { + "component": 47, + "student": 16, + "value": 16 + } +}, { + "model": "core.score", + "pk": 616, + "fields": { + "component": 48, + "student": 3, + "value": 13 + } +}, { + "model": "core.score", + "pk": 617, + "fields": { + "component": 48, + "student": 4, + "value": 12 + } +}, { + "model": "core.score", + "pk": 618, + "fields": { + "component": 48, + "student": 13, + "value": 13 + } +}, { + "model": "core.score", + "pk": 619, + "fields": { + "component": 48, + "student": 17, + "value": 13 + } +}, { + "model": "core.score", + "pk": 620, + "fields": { + "component": 48, + "student": 12, + "value": 12 + } +}, { + "model": "core.score", + "pk": 621, + "fields": { + "component": 48, + "student": 14, + "value": 11 + } +}, { + "model": "core.score", + "pk": 622, + "fields": { + "component": 48, + "student": 5, + "value": 12 + } +}, { + "model": "core.score", + "pk": 623, + "fields": { + "component": 48, + "student": 9, + "value": 13 + } +}, { + "model": "core.score", + "pk": 624, + "fields": { + "component": 48, + "student": 18, + "value": 12 + } +}, { + "model": "core.score", + "pk": 625, + "fields": { + "component": 48, + "student": 6, + "value": 12 + } +}, { + "model": "core.score", + "pk": 626, + "fields": { + "component": 48, + "student": 19, + "value": 12 + } +}, { + "model": "core.score", + "pk": 627, + "fields": { + "component": 48, + "student": 15, + "value": 13 + } +}, { + "model": "core.score", + "pk": 628, + "fields": { + "component": 48, + "student": 7, + "value": 11 + } +}, { + "model": "core.score", + "pk": 629, + "fields": { + "component": 48, + "student": 11, + "value": 12 + } +}, { + "model": "core.score", + "pk": 630, + "fields": { + "component": 48, + "student": 16, + "value": 12 + } +}, { + "model": "core.score", + "pk": 631, + "fields": { + "component": 49, + "student": 3, + "value": 95 + } +}, { + "model": "core.score", + "pk": 632, + "fields": { + "component": 49, + "student": 4, + "value": 95 + } +}, { + "model": "core.score", + "pk": 633, + "fields": { + "component": 49, + "student": 13, + "value": 95 + } +}, { + "model": "core.score", + "pk": 634, + "fields": { + "component": 49, + "student": 17, + "value": 95 + } +}, { + "model": "core.score", + "pk": 635, + "fields": { + "component": 49, + "student": 12, + "value": 100 + } +}, { + "model": "core.score", + "pk": 636, + "fields": { + "component": 49, + "student": 14, + "value": 95 + } +}, { + "model": "core.score", + "pk": 637, + "fields": { + "component": 49, + "student": 5, + "value": 95 + } +}, { + "model": "core.score", + "pk": 638, + "fields": { + "component": 49, + "student": 9, + "value": 95 + } +}, { + "model": "core.score", + "pk": 639, + "fields": { + "component": 49, + "student": 18, + "value": 95 + } +}, { + "model": "core.score", + "pk": 640, + "fields": { + "component": 49, + "student": 6, + "value": 95 + } +}, { + "model": "core.score", + "pk": 641, + "fields": { + "component": 49, + "student": 19, + "value": 95 + } +}, { + "model": "core.score", + "pk": 642, + "fields": { + "component": 49, + "student": 15, + "value": 95 + } +}, { + "model": "core.score", + "pk": 643, + "fields": { + "component": 49, + "student": 7, + "value": 95 + } +}, { + "model": "core.score", + "pk": 644, + "fields": { + "component": 49, + "student": 11, + "value": 95 + } +}, { + "model": "core.score", + "pk": 645, + "fields": { + "component": 49, + "student": 16, + "value": 95 + } +}, { + "model": "core.score", + "pk": 646, + "fields": { + "component": 50, + "student": 4, + "value": 147 + } +}, { + "model": "core.score", + "pk": 647, + "fields": { + "component": 50, + "student": 13, + "value": 134 + } +}, { + "model": "core.score", + "pk": 648, + "fields": { + "component": 50, + "student": 17, + "value": 116 + } +}, { + "model": "core.score", + "pk": 649, + "fields": { + "component": 50, + "student": 12, + "value": 154 + } +}, { + "model": "core.score", + "pk": 650, + "fields": { + "component": 50, + "student": 5, + "value": 153 + } +}, { + "model": "core.score", + "pk": 651, + "fields": { + "component": 50, + "student": 9, + "value": 87 + } +}, { + "model": "core.score", + "pk": 652, + "fields": { + "component": 50, + "student": 18, + "value": 154 + } +}, { + "model": "core.score", + "pk": 653, + "fields": { + "component": 50, + "student": 6, + "value": 138 + } +}, { + "model": "core.score", + "pk": 654, + "fields": { + "component": 50, + "student": 19, + "value": 11 + } +}, { + "model": "core.score", + "pk": 655, + "fields": { + "component": 50, + "student": 15, + "value": 106 + } +}, { + "model": "core.score", + "pk": 656, + "fields": { + "component": 50, + "student": 7, + "value": 86 + } +}, { + "model": "core.score", + "pk": 657, + "fields": { + "component": 50, + "student": 11, + "value": 136 + } +}, { + "model": "core.score", + "pk": 658, + "fields": { + "component": 50, + "student": 16, + "value": 127 + } +}, { + "model": "core.score", + "pk": 659, + "fields": { + "component": 51, + "student": 3, + "value": 44 + } +}, { + "model": "core.score", + "pk": 660, + "fields": { + "component": 51, + "student": 4, + "value": 51 + } +}, { + "model": "core.score", + "pk": 661, + "fields": { + "component": 51, + "student": 13, + "value": 42 + } +}, { + "model": "core.score", + "pk": 662, + "fields": { + "component": 51, + "student": 12, + "value": 51 + } +}, { + "model": "core.score", + "pk": 663, + "fields": { + "component": 51, + "student": 14, + "value": 19 + } +}, { + "model": "core.score", + "pk": 664, + "fields": { + "component": 51, + "student": 9, + "value": 39 + } +}, { + "model": "core.score", + "pk": 665, + "fields": { + "component": 51, + "student": 18, + "value": 51 + } +}, { + "model": "core.score", + "pk": 666, + "fields": { + "component": 51, + "student": 6, + "value": 48 + } +}, { + "model": "core.score", + "pk": 667, + "fields": { + "component": 51, + "student": 19, + "value": 8 + } +}, { + "model": "core.score", + "pk": 668, + "fields": { + "component": 51, + "student": 15, + "value": 38 + } +}, { + "model": "core.score", + "pk": 669, + "fields": { + "component": 51, + "student": 7, + "value": 28 + } +}, { + "model": "core.score", + "pk": 670, + "fields": { + "component": 51, + "student": 11, + "value": 50 + } +}, { + "model": "core.score", + "pk": 671, + "fields": { + "component": 51, + "student": 16, + "value": 50 + } +}, { + "model": "core.score", + "pk": 672, + "fields": { + "component": 50, + "student": 3, + "value": 126 + } +}, { + "model": "core.score", + "pk": 673, + "fields": { + "component": 50, + "student": 14, + "value": 92 + } +}, { + "model": "core.score", + "pk": 674, + "fields": { + "component": 52, + "student": 3, + "value": 25 + } +}, { + "model": "core.score", + "pk": 675, + "fields": { + "component": 52, + "student": 4, + "value": 38 + } +}, { + "model": "core.score", + "pk": 676, + "fields": { + "component": 52, + "student": 13, + "value": 20 + } +}, { + "model": "core.score", + "pk": 677, + "fields": { + "component": 52, + "student": 17, + "value": 17 + } +}, { + "model": "core.score", + "pk": 678, + "fields": { + "component": 52, + "student": 12, + "value": 42 + } +}, { + "model": "core.score", + "pk": 679, + "fields": { + "component": 52, + "student": 14, + "value": 3 + } +}, { + "model": "core.score", + "pk": 680, + "fields": { + "component": 52, + "student": 5, + "value": 41 + } +}, { + "model": "core.score", + "pk": 681, + "fields": { + "component": 52, + "student": 9, + "value": 13 + } +}, { + "model": "core.score", + "pk": 682, + "fields": { + "component": 52, + "student": 18, + "value": 36 + } +}, { + "model": "core.score", + "pk": 683, + "fields": { + "component": 52, + "student": 6, + "value": 21 + } +}, { + "model": "core.score", + "pk": 684, + "fields": { + "component": 52, + "student": 19, + "value": 3 + } +}, { + "model": "core.score", + "pk": 685, + "fields": { + "component": 52, + "student": 15, + "value": 16 + } +}, { + "model": "core.score", + "pk": 686, + "fields": { + "component": 52, + "student": 7, + "value": 8 + } +}, { + "model": "core.score", + "pk": 687, + "fields": { + "component": 52, + "student": 11, + "value": 31 + } +}, { + "model": "core.score", + "pk": 688, + "fields": { + "component": 52, + "student": 16, + "value": 34 + } +}, { + "model": "core.score", + "pk": 689, + "fields": { + "component": 53, + "student": 3, + "value": 31 + } +}, { + "model": "core.score", + "pk": 690, + "fields": { + "component": 53, + "student": 4, + "value": 49 + } +}, { + "model": "core.score", + "pk": 691, + "fields": { + "component": 53, + "student": 17, + "value": 15 + } +}, { + "model": "core.score", + "pk": 692, + "fields": { + "component": 53, + "student": 12, + "value": 43 + } +}, { + "model": "core.score", + "pk": 693, + "fields": { + "component": 53, + "student": 14, + "value": 5 + } +}, { + "model": "core.score", + "pk": 694, + "fields": { + "component": 53, + "student": 18, + "value": 47 + } +}, { + "model": "core.score", + "pk": 695, + "fields": { + "component": 53, + "student": 6, + "value": 34 + } +}, { + "model": "core.score", + "pk": 696, + "fields": { + "component": 53, + "student": 19, + "value": 5 + } +}, { + "model": "core.score", + "pk": 697, + "fields": { + "component": 53, + "student": 15, + "value": 24 + } +}, { + "model": "core.score", + "pk": 698, + "fields": { + "component": 53, + "student": 7, + "value": 9 + } +}, { + "model": "core.score", + "pk": 699, + "fields": { + "component": 53, + "student": 11, + "value": 41 + } +}, { + "model": "core.score", + "pk": 700, + "fields": { + "component": 53, + "student": 16, + "value": 46 + } +}, { + "model": "core.score", + "pk": 701, + "fields": { + "component": 54, + "student": 3, + "value": 66 + } +}, { + "model": "core.score", + "pk": 702, + "fields": { + "component": 54, + "student": 4, + "value": 71 + } +}, { + "model": "core.score", + "pk": 703, + "fields": { + "component": 54, + "student": 13, + "value": 62 + } +}, { + "model": "core.score", + "pk": 704, + "fields": { + "component": 54, + "student": 17, + "value": 47 + } +}, { + "model": "core.score", + "pk": 705, + "fields": { + "component": 54, + "student": 12, + "value": 71 + } +}, { + "model": "core.score", + "pk": 706, + "fields": { + "component": 54, + "student": 14, + "value": 48 + } +}, { + "model": "core.score", + "pk": 707, + "fields": { + "component": 54, + "student": 9, + "value": 51 + } +}, { + "model": "core.score", + "pk": 708, + "fields": { + "component": 54, + "student": 19, + "value": 44 + } +}, { + "model": "core.score", + "pk": 709, + "fields": { + "component": 54, + "student": 15, + "value": 55 + } +}, { + "model": "core.score", + "pk": 710, + "fields": { + "component": 54, + "student": 7, + "value": 50 + } +}, { + "model": "core.score", + "pk": 711, + "fields": { + "component": 55, + "student": 3, + "value": 25 + } +}, { + "model": "core.score", + "pk": 712, + "fields": { + "component": 55, + "student": 4, + "value": 44 + } +}, { + "model": "core.score", + "pk": 713, + "fields": { + "component": 55, + "student": 13, + "value": 22 + } +}, { + "model": "core.score", + "pk": 714, + "fields": { + "component": 55, + "student": 17, + "value": 18 + } +}, { + "model": "core.score", + "pk": 715, + "fields": { + "component": 55, + "student": 12, + "value": 39 + } +}, { + "model": "core.score", + "pk": 716, + "fields": { + "component": 55, + "student": 14, + "value": 5 + } +}, { + "model": "core.score", + "pk": 717, + "fields": { + "component": 55, + "student": 9, + "value": 12 + } +}, { + "model": "core.score", + "pk": 718, + "fields": { + "component": 55, + "student": 18, + "value": 50 + } +}, { + "model": "core.score", + "pk": 719, + "fields": { + "component": 55, + "student": 19, + "value": 22 + } +}, { + "model": "core.score", + "pk": 720, + "fields": { + "component": 55, + "student": 15, + "value": 14 + } +}, { + "model": "core.score", + "pk": 721, + "fields": { + "component": 55, + "student": 7, + "value": 10 + } +}, { + "model": "core.score", + "pk": 722, + "fields": { + "component": 55, + "student": 16, + "value": 35 + } +}, { + "model": "core.score", + "pk": 723, + "fields": { + "component": 56, + "student": 3, + "value": 35 + } +}, { + "model": "core.score", + "pk": 724, + "fields": { + "component": 56, + "student": 4, + "value": 46 + } +}, { + "model": "core.score", + "pk": 725, + "fields": { + "component": 56, + "student": 13, + "value": 32 + } +}, { + "model": "core.score", + "pk": 726, + "fields": { + "component": 56, + "student": 17, + "value": 22 + } +}, { + "model": "core.score", + "pk": 727, + "fields": { + "component": 56, + "student": 12, + "value": 47 + } +}, { + "model": "core.score", + "pk": 728, + "fields": { + "component": 56, + "student": 14, + "value": 4 + } +}, { + "model": "core.score", + "pk": 729, + "fields": { + "component": 56, + "student": 5, + "value": 45 + } +}, { + "model": "core.score", + "pk": 730, + "fields": { + "component": 56, + "student": 18, + "value": 50 + } +}, { + "model": "core.score", + "pk": 731, + "fields": { + "component": 56, + "student": 6, + "value": 34 + } +}, { + "model": "core.score", + "pk": 732, + "fields": { + "component": 56, + "student": 19, + "value": 40 + } +}, { + "model": "core.score", + "pk": 733, + "fields": { + "component": 56, + "student": 15, + "value": 22 + } +}, { + "model": "core.score", + "pk": 734, + "fields": { + "component": 56, + "student": 7, + "value": 15 + } +}, { + "model": "core.score", + "pk": 735, + "fields": { + "component": 56, + "student": 11, + "value": 45 + } +}, { + "model": "core.score", + "pk": 736, + "fields": { + "component": 56, + "student": 16, + "value": 47 + } +}, { + "model": "core.score", + "pk": 737, + "fields": { + "component": 57, + "student": 3, + "value": 14 + } +}, { + "model": "core.score", + "pk": 738, + "fields": { + "component": 57, + "student": 4, + "value": 16 + } +}, { + "model": "core.score", + "pk": 739, + "fields": { + "component": 57, + "student": 13, + "value": 14 + } +}, { + "model": "core.score", + "pk": 740, + "fields": { + "component": 57, + "student": 17, + "value": 14 + } +}, { + "model": "core.score", + "pk": 741, + "fields": { + "component": 57, + "student": 12, + "value": 14 + } +}, { + "model": "core.score", + "pk": 742, + "fields": { + "component": 57, + "student": 14, + "value": 14 + } +}, { + "model": "core.score", + "pk": 743, + "fields": { + "component": 57, + "student": 5, + "value": 16 + } +}, { + "model": "core.score", + "pk": 744, + "fields": { + "component": 57, + "student": 9, + "value": 14 + } +}, { + "model": "core.score", + "pk": 745, + "fields": { + "component": 57, + "student": 18, + "value": 16 + } +}, { + "model": "core.score", + "pk": 746, + "fields": { + "component": 57, + "student": 6, + "value": 14 + } +}, { + "model": "core.score", + "pk": 747, + "fields": { + "component": 57, + "student": 19, + "value": 14 + } +}, { + "model": "core.score", + "pk": 748, + "fields": { + "component": 57, + "student": 15, + "value": 10 + } +}, { + "model": "core.score", + "pk": 749, + "fields": { + "component": 57, + "student": 7, + "value": 12 + } +}, { + "model": "core.score", + "pk": 750, + "fields": { + "component": 57, + "student": 11, + "value": 14 + } +}, { + "model": "core.score", + "pk": 751, + "fields": { + "component": 57, + "student": 16, + "value": 13 + } +}, { + "model": "core.score", + "pk": 752, + "fields": { + "component": 58, + "student": 3, + "value": 26 + } +}, { + "model": "core.score", + "pk": 753, + "fields": { + "component": 58, + "student": 4, + "value": 25 + } +}, { + "model": "core.score", + "pk": 754, + "fields": { + "component": 58, + "student": 13, + "value": 17 + } +}, { + "model": "core.score", + "pk": 755, + "fields": { + "component": 58, + "student": 17, + "value": 21 + } +}, { + "model": "core.score", + "pk": 756, + "fields": { + "component": 58, + "student": 12, + "value": 28 + } +}, { + "model": "core.score", + "pk": 757, + "fields": { + "component": 58, + "student": 14, + "value": 21 + } +}, { + "model": "core.score", + "pk": 758, + "fields": { + "component": 58, + "student": 5, + "value": 22 + } +}, { + "model": "core.score", + "pk": 759, + "fields": { + "component": 58, + "student": 9, + "value": 25 + } +}, { + "model": "core.score", + "pk": 760, + "fields": { + "component": 58, + "student": 18, + "value": 21 + } +}, { + "model": "core.score", + "pk": 761, + "fields": { + "component": 58, + "student": 6, + "value": 26 + } +}, { + "model": "core.score", + "pk": 762, + "fields": { + "component": 58, + "student": 19, + "value": 27 + } +}, { + "model": "core.score", + "pk": 763, + "fields": { + "component": 58, + "student": 15, + "value": 18 + } +}, { + "model": "core.score", + "pk": 764, + "fields": { + "component": 58, + "student": 7, + "value": 19 + } +}, { + "model": "core.score", + "pk": 765, + "fields": { + "component": 58, + "student": 11, + "value": 26 + } +}, { + "model": "core.score", + "pk": 766, + "fields": { + "component": 58, + "student": 16, + "value": 26 + } +}, { + "model": "core.score", + "pk": 767, + "fields": { + "component": 59, + "student": 3, + "value": 15 + } +}, { + "model": "core.score", + "pk": 768, + "fields": { + "component": 59, + "student": 4, + "value": 15 + } +}, { + "model": "core.score", + "pk": 769, + "fields": { + "component": 59, + "student": 13, + "value": 15 + } +}, { + "model": "core.score", + "pk": 770, + "fields": { + "component": 59, + "student": 17, + "value": 15 + } +}, { + "model": "core.score", + "pk": 771, + "fields": { + "component": 59, + "student": 12, + "value": 15 + } +}, { + "model": "core.score", + "pk": 772, + "fields": { + "component": 59, + "student": 14, + "value": 14 + } +}, { + "model": "core.score", + "pk": 773, + "fields": { + "component": 59, + "student": 5, + "value": 13 + } +}, { + "model": "core.score", + "pk": 774, + "fields": { + "component": 59, + "student": 9, + "value": 15 + } +}, { + "model": "core.score", + "pk": 775, + "fields": { + "component": 59, + "student": 18, + "value": 15 + } +}, { + "model": "core.score", + "pk": 776, + "fields": { + "component": 59, + "student": 6, + "value": 15 + } +}, { + "model": "core.score", + "pk": 777, + "fields": { + "component": 59, + "student": 19, + "value": 15 + } +}, { + "model": "core.score", + "pk": 778, + "fields": { + "component": 59, + "student": 15, + "value": 11 + } +}, { + "model": "core.score", + "pk": 779, + "fields": { + "component": 59, + "student": 7, + "value": 13 + } +}, { + "model": "core.score", + "pk": 780, + "fields": { + "component": 59, + "student": 11, + "value": 15 + } +}, { + "model": "core.score", + "pk": 781, + "fields": { + "component": 59, + "student": 16, + "value": 13 + } +}, { + "model": "core.schoolday", + "pk": 2, + "fields": { + "school_year": 1, + "date": "2021-08-23", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 3, + "fields": { + "school_year": 1, + "date": "2021-08-30", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 4, + "fields": { + "school_year": 1, + "date": "2021-08-31", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 5, + "fields": { + "school_year": 1, + "date": "2021-08-18", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 6, + "fields": { + "school_year": 1, + "date": "2021-08-19", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 7, + "fields": { + "school_year": 1, + "date": "2021-08-20", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 8, + "fields": { + "school_year": 1, + "date": "2021-08-24", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 9, + "fields": { + "school_year": 1, + "date": "2021-08-25", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 10, + "fields": { + "school_year": 1, + "date": "2021-08-26", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 11, + "fields": { + "school_year": 1, + "date": "2021-08-27", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 12, + "fields": { + "school_year": 1, + "date": "2021-09-01", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 13, + "fields": { + "school_year": 1, + "date": "2021-09-02", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 14, + "fields": { + "school_year": 1, + "date": "2021-09-03", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 15, + "fields": { + "school_year": 1, + "date": "2021-09-06", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 16, + "fields": { + "school_year": 1, + "date": "2021-09-07", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 17, + "fields": { + "school_year": 1, + "date": "2021-09-08", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 18, + "fields": { + "school_year": 1, + "date": "2021-09-09", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 19, + "fields": { + "school_year": 1, + "date": "2021-09-10", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 20, + "fields": { + "school_year": 1, + "date": "2021-09-13", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 21, + "fields": { + "school_year": 1, + "date": "2021-09-14", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 22, + "fields": { + "school_year": 1, + "date": "2021-09-16", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 23, + "fields": { + "school_year": 1, + "date": "2021-09-17", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 24, + "fields": { + "school_year": 1, + "date": "2021-09-20", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 25, + "fields": { + "school_year": 1, + "date": "2021-09-21", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 26, + "fields": { + "school_year": 1, + "date": "2021-09-22", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 27, + "fields": { + "school_year": 1, + "date": "2021-09-23", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 28, + "fields": { + "school_year": 1, + "date": "2021-09-24", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 29, + "fields": { + "school_year": 1, + "date": "2021-09-27", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 30, + "fields": { + "school_year": 1, + "date": "2021-09-28", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 31, + "fields": { + "school_year": 1, + "date": "2021-09-29", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 32, + "fields": { + "school_year": 1, + "date": "2021-09-30", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 33, + "fields": { + "school_year": 1, + "date": "2021-10-01", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 34, + "fields": { + "school_year": 1, + "date": "2021-10-04", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 35, + "fields": { + "school_year": 1, + "date": "2021-10-05", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 36, + "fields": { + "school_year": 1, + "date": "2021-10-06", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 37, + "fields": { + "school_year": 1, + "date": "2021-10-07", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 38, + "fields": { + "school_year": 1, + "date": "2021-10-08", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 39, + "fields": { + "school_year": 1, + "date": "2021-10-11", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 40, + "fields": { + "school_year": 1, + "date": "2021-10-12", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 41, + "fields": { + "school_year": 1, + "date": "2021-10-13", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 42, + "fields": { + "school_year": 1, + "date": "2021-10-14", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 43, + "fields": { + "school_year": 1, + "date": "2021-10-15", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 44, + "fields": { + "school_year": 1, + "date": "2021-10-19", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 45, + "fields": { + "school_year": 1, + "date": "2021-10-20", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 46, + "fields": { + "school_year": 1, + "date": "2021-10-21", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 47, + "fields": { + "school_year": 1, + "date": "2021-10-22", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 48, + "fields": { + "school_year": 1, + "date": "2021-10-25", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 49, + "fields": { + "school_year": 1, + "date": "2021-10-26", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 50, + "fields": { + "school_year": 1, + "date": "2021-10-27", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 51, + "fields": { + "school_year": 1, + "date": "2021-10-28", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 52, + "fields": { + "school_year": 1, + "date": "2021-11-01", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 53, + "fields": { + "school_year": 1, + "date": "2021-11-02", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 54, + "fields": { + "school_year": 1, + "date": "2021-11-03", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 55, + "fields": { + "school_year": 1, + "date": "2021-11-04", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 56, + "fields": { + "school_year": 1, + "date": "2021-11-05", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 57, + "fields": { + "school_year": 1, + "date": "2021-11-08", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 58, + "fields": { + "school_year": 1, + "date": "2021-11-09", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 59, + "fields": { + "school_year": 1, + "date": "2021-11-10", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 60, + "fields": { + "school_year": 1, + "date": "2021-11-11", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 61, + "fields": { + "school_year": 1, + "date": "2021-11-12", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 62, + "fields": { + "school_year": 1, + "date": "2021-11-15", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 63, + "fields": { + "school_year": 1, + "date": "2021-11-16", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 64, + "fields": { + "school_year": 1, + "date": "2021-11-17", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 65, + "fields": { + "school_year": 1, + "date": "2021-11-18", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 66, + "fields": { + "school_year": 1, + "date": "2021-11-19", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 67, + "fields": { + "school_year": 1, + "date": "2021-11-22", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 68, + "fields": { + "school_year": 1, + "date": "2021-11-23", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 69, + "fields": { + "school_year": 1, + "date": "2021-11-29", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 70, + "fields": { + "school_year": 1, + "date": "2021-11-30", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 71, + "fields": { + "school_year": 1, + "date": "2021-12-01", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 72, + "fields": { + "school_year": 1, + "date": "2021-12-03", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 73, + "fields": { + "school_year": 1, + "date": "2021-12-06", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 74, + "fields": { + "school_year": 1, + "date": "2021-12-07", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 75, + "fields": { + "school_year": 1, + "date": "2021-12-08", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 76, + "fields": { + "school_year": 1, + "date": "2021-12-09", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 77, + "fields": { + "school_year": 1, + "date": "2021-12-10", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 78, + "fields": { + "school_year": 1, + "date": "2021-12-13", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 79, + "fields": { + "school_year": 1, + "date": "2021-12-14", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 80, + "fields": { + "school_year": 1, + "date": "2021-12-15", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 81, + "fields": { + "school_year": 1, + "date": "2021-12-16", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 82, + "fields": { + "school_year": 1, + "date": "2021-12-17", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 83, + "fields": { + "school_year": 1, + "date": "2022-01-04", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 84, + "fields": { + "school_year": 1, + "date": "2022-01-05", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 85, + "fields": { + "school_year": 1, + "date": "2022-01-06", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 86, + "fields": { + "school_year": 1, + "date": "2022-01-07", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 87, + "fields": { + "school_year": 1, + "date": "2022-01-10", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 88, + "fields": { + "school_year": 1, + "date": "2022-01-11", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 89, + "fields": { + "school_year": 1, + "date": "2022-01-12", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 90, + "fields": { + "school_year": 1, + "date": "2022-01-13", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 91, + "fields": { + "school_year": 1, + "date": "2022-01-14", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 92, + "fields": { + "school_year": 1, + "date": "2022-01-17", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 93, + "fields": { + "school_year": 1, + "date": "2022-01-18", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 94, + "fields": { + "school_year": 1, + "date": "2022-01-19", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 95, + "fields": { + "school_year": 1, + "date": "2022-01-20", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 96, + "fields": { + "school_year": 1, + "date": "2022-01-21", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 97, + "fields": { + "school_year": 1, + "date": "2022-01-24", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 98, + "fields": { + "school_year": 1, + "date": "2022-01-25", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 99, + "fields": { + "school_year": 1, + "date": "2022-01-26", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 100, + "fields": { + "school_year": 1, + "date": "2022-01-27", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 101, + "fields": { + "school_year": 1, + "date": "2022-01-28", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 102, + "fields": { + "school_year": 1, + "date": "2022-01-31", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 103, + "fields": { + "school_year": 1, + "date": "2022-02-01", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 104, + "fields": { + "school_year": 1, + "date": "2022-02-02", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 105, + "fields": { + "school_year": 1, + "date": "2022-02-03", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 106, + "fields": { + "school_year": 1, + "date": "2022-02-04", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 107, + "fields": { + "school_year": 1, + "date": "2022-02-07", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 108, + "fields": { + "school_year": 1, + "date": "2022-02-08", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 109, + "fields": { + "school_year": 1, + "date": "2022-02-09", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 110, + "fields": { + "school_year": 1, + "date": "2022-02-10", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 111, + "fields": { + "school_year": 1, + "date": "2022-02-11", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 112, + "fields": { + "school_year": 1, + "date": "2022-02-14", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 113, + "fields": { + "school_year": 1, + "date": "2022-02-15", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 114, + "fields": { + "school_year": 1, + "date": "2022-02-16", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 115, + "fields": { + "school_year": 1, + "date": "2022-02-17", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 116, + "fields": { + "school_year": 1, + "date": "2022-02-22", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 117, + "fields": { + "school_year": 1, + "date": "2022-02-23", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 118, + "fields": { + "school_year": 1, + "date": "2022-02-24", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 119, + "fields": { + "school_year": 1, + "date": "2022-02-28", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 120, + "fields": { + "school_year": 1, + "date": "2022-02-25", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 121, + "fields": { + "school_year": 1, + "date": "2022-03-01", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 122, + "fields": { + "school_year": 1, + "date": "2022-03-02", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 123, + "fields": { + "school_year": 1, + "date": "2022-03-03", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 124, + "fields": { + "school_year": 1, + "date": "2022-03-04", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 125, + "fields": { + "school_year": 1, + "date": "2022-03-07", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 126, + "fields": { + "school_year": 1, + "date": "2022-03-08", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 127, + "fields": { + "school_year": 1, + "date": "2022-03-09", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 128, + "fields": { + "school_year": 1, + "date": "2022-03-10", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 129, + "fields": { + "school_year": 1, + "date": "2022-03-11", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 130, + "fields": { + "school_year": 1, + "date": "2022-03-14", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 131, + "fields": { + "school_year": 1, + "date": "2022-03-15", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 132, + "fields": { + "school_year": 1, + "date": "2022-03-16", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 133, + "fields": { + "school_year": 1, + "date": "2022-03-17", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 134, + "fields": { + "school_year": 1, + "date": "2022-03-18", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 135, + "fields": { + "school_year": 1, + "date": "2022-03-28", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 136, + "fields": { + "school_year": 1, + "date": "2022-03-29", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 137, + "fields": { + "school_year": 1, + "date": "2022-03-30", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 138, + "fields": { + "school_year": 1, + "date": "2022-03-31", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 139, + "fields": { + "school_year": 1, + "date": "2022-04-01", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 140, + "fields": { + "school_year": 1, + "date": "2022-04-04", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 141, + "fields": { + "school_year": 1, + "date": "2022-04-05", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 142, + "fields": { + "school_year": 1, + "date": "2022-04-06", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 143, + "fields": { + "school_year": 1, + "date": "2022-04-07", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 144, + "fields": { + "school_year": 1, + "date": "2022-04-08", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 145, + "fields": { + "school_year": 1, + "date": "2022-04-11", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 146, + "fields": { + "school_year": 1, + "date": "2022-04-13", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 147, + "fields": { + "school_year": 1, + "date": "2022-04-14", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 148, + "fields": { + "school_year": 1, + "date": "2022-04-15", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 149, + "fields": { + "school_year": 1, + "date": "2022-04-18", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 150, + "fields": { + "school_year": 1, + "date": "2022-04-19", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 151, + "fields": { + "school_year": 1, + "date": "2022-04-20", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 152, + "fields": { + "school_year": 1, + "date": "2022-04-21", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 153, + "fields": { + "school_year": 1, + "date": "2022-04-22", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 154, + "fields": { + "school_year": 1, + "date": "2022-04-25", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 155, + "fields": { + "school_year": 1, + "date": "2022-04-26", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 156, + "fields": { + "school_year": 1, + "date": "2022-04-27", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 157, + "fields": { + "school_year": 1, + "date": "2022-04-28", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 158, + "fields": { + "school_year": 1, + "date": "2022-04-29", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 159, + "fields": { + "school_year": 1, + "date": "2022-05-02", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 160, + "fields": { + "school_year": 1, + "date": "2022-05-03", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 161, + "fields": { + "school_year": 1, + "date": "2022-05-04", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 162, + "fields": { + "school_year": 1, + "date": "2022-05-05", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 163, + "fields": { + "school_year": 1, + "date": "2022-05-06", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 164, + "fields": { + "school_year": 1, + "date": "2022-05-09", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 165, + "fields": { + "school_year": 1, + "date": "2022-05-10", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 166, + "fields": { + "school_year": 1, + "date": "2022-05-11", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 167, + "fields": { + "school_year": 1, + "date": "2022-05-12", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 168, + "fields": { + "school_year": 1, + "date": "2022-05-13", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 169, + "fields": { + "school_year": 1, + "date": "2022-05-18", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 170, + "fields": { + "school_year": 1, + "date": "2022-05-19", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.schoolday", + "pk": 171, + "fields": { + "school_year": 1, + "date": "2022-05-20", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2, + "fields": { + "school_day": 2, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 3, + "fields": { + "school_day": 2, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 4, + "fields": { + "school_day": 2, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 5, + "fields": { + "school_day": 2, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 6, + "fields": { + "school_day": 2, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 7, + "fields": { + "school_day": 2, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 8, + "fields": { + "school_day": 2, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 9, + "fields": { + "school_day": 2, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 10, + "fields": { + "school_day": 2, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 11, + "fields": { + "school_day": 2, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 12, + "fields": { + "school_day": 2, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 13, + "fields": { + "school_day": 2, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 14, + "fields": { + "school_day": 2, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 15, + "fields": { + "school_day": 2, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 16, + "fields": { + "school_day": 2, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 18, + "fields": { + "school_day": 3, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 19, + "fields": { + "school_day": 3, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 20, + "fields": { + "school_day": 3, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 21, + "fields": { + "school_day": 3, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 22, + "fields": { + "school_day": 3, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 23, + "fields": { + "school_day": 3, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 24, + "fields": { + "school_day": 3, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 25, + "fields": { + "school_day": 3, + "student": 9, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 26, + "fields": { + "school_day": 3, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 27, + "fields": { + "school_day": 3, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 28, + "fields": { + "school_day": 3, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 29, + "fields": { + "school_day": 3, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 30, + "fields": { + "school_day": 3, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 31, + "fields": { + "school_day": 3, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 32, + "fields": { + "school_day": 3, + "student": 16, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 34, + "fields": { + "school_day": 4, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 35, + "fields": { + "school_day": 4, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 36, + "fields": { + "school_day": 4, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 37, + "fields": { + "school_day": 4, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 38, + "fields": { + "school_day": 4, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 39, + "fields": { + "school_day": 4, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 40, + "fields": { + "school_day": 4, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 41, + "fields": { + "school_day": 4, + "student": 9, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 42, + "fields": { + "school_day": 4, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 43, + "fields": { + "school_day": 4, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 44, + "fields": { + "school_day": 4, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 45, + "fields": { + "school_day": 4, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 46, + "fields": { + "school_day": 4, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 47, + "fields": { + "school_day": 4, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 48, + "fields": { + "school_day": 4, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 50, + "fields": { + "school_day": 5, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 51, + "fields": { + "school_day": 5, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 52, + "fields": { + "school_day": 5, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 53, + "fields": { + "school_day": 5, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 54, + "fields": { + "school_day": 5, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 55, + "fields": { + "school_day": 5, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 56, + "fields": { + "school_day": 5, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 57, + "fields": { + "school_day": 5, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 58, + "fields": { + "school_day": 5, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 59, + "fields": { + "school_day": 5, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 60, + "fields": { + "school_day": 5, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 61, + "fields": { + "school_day": 5, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 62, + "fields": { + "school_day": 5, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 63, + "fields": { + "school_day": 5, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 64, + "fields": { + "school_day": 5, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 66, + "fields": { + "school_day": 6, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 67, + "fields": { + "school_day": 6, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 68, + "fields": { + "school_day": 6, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 69, + "fields": { + "school_day": 6, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 70, + "fields": { + "school_day": 6, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 71, + "fields": { + "school_day": 6, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 72, + "fields": { + "school_day": 6, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 73, + "fields": { + "school_day": 6, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 74, + "fields": { + "school_day": 6, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 75, + "fields": { + "school_day": 6, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 76, + "fields": { + "school_day": 6, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 77, + "fields": { + "school_day": 6, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 78, + "fields": { + "school_day": 6, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 79, + "fields": { + "school_day": 6, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 80, + "fields": { + "school_day": 6, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 82, + "fields": { + "school_day": 7, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 83, + "fields": { + "school_day": 7, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 84, + "fields": { + "school_day": 7, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 85, + "fields": { + "school_day": 7, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 86, + "fields": { + "school_day": 7, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 87, + "fields": { + "school_day": 7, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 88, + "fields": { + "school_day": 7, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 89, + "fields": { + "school_day": 7, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 90, + "fields": { + "school_day": 7, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 91, + "fields": { + "school_day": 7, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 92, + "fields": { + "school_day": 7, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 93, + "fields": { + "school_day": 7, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 94, + "fields": { + "school_day": 7, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 95, + "fields": { + "school_day": 7, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 96, + "fields": { + "school_day": 7, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 98, + "fields": { + "school_day": 8, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 99, + "fields": { + "school_day": 8, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 100, + "fields": { + "school_day": 8, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 101, + "fields": { + "school_day": 8, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 102, + "fields": { + "school_day": 8, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 103, + "fields": { + "school_day": 8, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 104, + "fields": { + "school_day": 8, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 105, + "fields": { + "school_day": 8, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 106, + "fields": { + "school_day": 8, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 107, + "fields": { + "school_day": 8, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 108, + "fields": { + "school_day": 8, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 109, + "fields": { + "school_day": 8, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 110, + "fields": { + "school_day": 8, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 111, + "fields": { + "school_day": 8, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 112, + "fields": { + "school_day": 8, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 114, + "fields": { + "school_day": 9, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 115, + "fields": { + "school_day": 9, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 116, + "fields": { + "school_day": 9, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 117, + "fields": { + "school_day": 9, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 118, + "fields": { + "school_day": 9, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 119, + "fields": { + "school_day": 9, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 120, + "fields": { + "school_day": 9, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 121, + "fields": { + "school_day": 9, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 122, + "fields": { + "school_day": 9, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 123, + "fields": { + "school_day": 9, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 124, + "fields": { + "school_day": 9, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 125, + "fields": { + "school_day": 9, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 126, + "fields": { + "school_day": 9, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 127, + "fields": { + "school_day": 9, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 128, + "fields": { + "school_day": 9, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 130, + "fields": { + "school_day": 10, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 131, + "fields": { + "school_day": 10, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 132, + "fields": { + "school_day": 10, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 133, + "fields": { + "school_day": 10, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 134, + "fields": { + "school_day": 10, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 135, + "fields": { + "school_day": 10, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 136, + "fields": { + "school_day": 10, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 137, + "fields": { + "school_day": 10, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 138, + "fields": { + "school_day": 10, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 139, + "fields": { + "school_day": 10, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 140, + "fields": { + "school_day": 10, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 141, + "fields": { + "school_day": 10, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 142, + "fields": { + "school_day": 10, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 143, + "fields": { + "school_day": 10, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 144, + "fields": { + "school_day": 10, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 146, + "fields": { + "school_day": 11, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 147, + "fields": { + "school_day": 11, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 148, + "fields": { + "school_day": 11, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 149, + "fields": { + "school_day": 11, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 150, + "fields": { + "school_day": 11, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 151, + "fields": { + "school_day": 11, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 152, + "fields": { + "school_day": 11, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 153, + "fields": { + "school_day": 11, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 154, + "fields": { + "school_day": 11, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 155, + "fields": { + "school_day": 11, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 156, + "fields": { + "school_day": 11, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 157, + "fields": { + "school_day": 11, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 158, + "fields": { + "school_day": 11, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 159, + "fields": { + "school_day": 11, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 160, + "fields": { + "school_day": 11, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 162, + "fields": { + "school_day": 12, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 163, + "fields": { + "school_day": 12, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 164, + "fields": { + "school_day": 12, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 165, + "fields": { + "school_day": 12, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 166, + "fields": { + "school_day": 12, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 167, + "fields": { + "school_day": 12, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 168, + "fields": { + "school_day": 12, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 169, + "fields": { + "school_day": 12, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 170, + "fields": { + "school_day": 12, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 171, + "fields": { + "school_day": 12, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 172, + "fields": { + "school_day": 12, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 173, + "fields": { + "school_day": 12, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 174, + "fields": { + "school_day": 12, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 175, + "fields": { + "school_day": 12, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 176, + "fields": { + "school_day": 12, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 178, + "fields": { + "school_day": 13, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 179, + "fields": { + "school_day": 13, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 180, + "fields": { + "school_day": 13, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 181, + "fields": { + "school_day": 13, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 182, + "fields": { + "school_day": 13, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 183, + "fields": { + "school_day": 13, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 184, + "fields": { + "school_day": 13, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 185, + "fields": { + "school_day": 13, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 186, + "fields": { + "school_day": 13, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 187, + "fields": { + "school_day": 13, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 188, + "fields": { + "school_day": 13, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 189, + "fields": { + "school_day": 13, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 190, + "fields": { + "school_day": 13, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 191, + "fields": { + "school_day": 13, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 192, + "fields": { + "school_day": 13, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 194, + "fields": { + "school_day": 14, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 195, + "fields": { + "school_day": 14, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 196, + "fields": { + "school_day": 14, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 197, + "fields": { + "school_day": 14, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 198, + "fields": { + "school_day": 14, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 199, + "fields": { + "school_day": 14, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 200, + "fields": { + "school_day": 14, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 201, + "fields": { + "school_day": 14, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 202, + "fields": { + "school_day": 14, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 203, + "fields": { + "school_day": 14, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 204, + "fields": { + "school_day": 14, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 205, + "fields": { + "school_day": 14, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 206, + "fields": { + "school_day": 14, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 207, + "fields": { + "school_day": 14, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 208, + "fields": { + "school_day": 14, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 210, + "fields": { + "school_day": 15, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 211, + "fields": { + "school_day": 15, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 212, + "fields": { + "school_day": 15, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 213, + "fields": { + "school_day": 15, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 214, + "fields": { + "school_day": 15, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 215, + "fields": { + "school_day": 15, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 216, + "fields": { + "school_day": 15, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 217, + "fields": { + "school_day": 15, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 218, + "fields": { + "school_day": 15, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 219, + "fields": { + "school_day": 15, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 220, + "fields": { + "school_day": 15, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 221, + "fields": { + "school_day": 15, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 222, + "fields": { + "school_day": 15, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 223, + "fields": { + "school_day": 15, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 224, + "fields": { + "school_day": 15, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 226, + "fields": { + "school_day": 16, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 227, + "fields": { + "school_day": 16, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 228, + "fields": { + "school_day": 16, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 229, + "fields": { + "school_day": 16, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 230, + "fields": { + "school_day": 16, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 231, + "fields": { + "school_day": 16, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 232, + "fields": { + "school_day": 16, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 233, + "fields": { + "school_day": 16, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 234, + "fields": { + "school_day": 16, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 235, + "fields": { + "school_day": 16, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 236, + "fields": { + "school_day": 16, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 237, + "fields": { + "school_day": 16, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 238, + "fields": { + "school_day": 16, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 239, + "fields": { + "school_day": 16, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 240, + "fields": { + "school_day": 16, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 242, + "fields": { + "school_day": 17, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 243, + "fields": { + "school_day": 17, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 244, + "fields": { + "school_day": 17, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 245, + "fields": { + "school_day": 17, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 246, + "fields": { + "school_day": 17, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 247, + "fields": { + "school_day": 17, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 248, + "fields": { + "school_day": 17, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 249, + "fields": { + "school_day": 17, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 250, + "fields": { + "school_day": 17, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 251, + "fields": { + "school_day": 17, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 252, + "fields": { + "school_day": 17, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 253, + "fields": { + "school_day": 17, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 254, + "fields": { + "school_day": 17, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 255, + "fields": { + "school_day": 17, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 256, + "fields": { + "school_day": 17, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 258, + "fields": { + "school_day": 18, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 259, + "fields": { + "school_day": 18, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 260, + "fields": { + "school_day": 18, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 261, + "fields": { + "school_day": 18, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 262, + "fields": { + "school_day": 18, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 263, + "fields": { + "school_day": 18, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 264, + "fields": { + "school_day": 18, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 265, + "fields": { + "school_day": 18, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 266, + "fields": { + "school_day": 18, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 267, + "fields": { + "school_day": 18, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 268, + "fields": { + "school_day": 18, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 269, + "fields": { + "school_day": 18, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 270, + "fields": { + "school_day": 18, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 271, + "fields": { + "school_day": 18, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 272, + "fields": { + "school_day": 18, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 274, + "fields": { + "school_day": 19, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 275, + "fields": { + "school_day": 19, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 276, + "fields": { + "school_day": 19, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 277, + "fields": { + "school_day": 19, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 278, + "fields": { + "school_day": 19, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 279, + "fields": { + "school_day": 19, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 280, + "fields": { + "school_day": 19, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 281, + "fields": { + "school_day": 19, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 282, + "fields": { + "school_day": 19, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 283, + "fields": { + "school_day": 19, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 284, + "fields": { + "school_day": 19, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 285, + "fields": { + "school_day": 19, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 286, + "fields": { + "school_day": 19, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 287, + "fields": { + "school_day": 19, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 288, + "fields": { + "school_day": 19, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 290, + "fields": { + "school_day": 20, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 291, + "fields": { + "school_day": 20, + "student": 4, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 292, + "fields": { + "school_day": 20, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 293, + "fields": { + "school_day": 20, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 294, + "fields": { + "school_day": 20, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 295, + "fields": { + "school_day": 20, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 296, + "fields": { + "school_day": 20, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 297, + "fields": { + "school_day": 20, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 298, + "fields": { + "school_day": 20, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 299, + "fields": { + "school_day": 20, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 300, + "fields": { + "school_day": 20, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 301, + "fields": { + "school_day": 20, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 302, + "fields": { + "school_day": 20, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 303, + "fields": { + "school_day": 20, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 304, + "fields": { + "school_day": 20, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 306, + "fields": { + "school_day": 21, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 307, + "fields": { + "school_day": 21, + "student": 4, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 308, + "fields": { + "school_day": 21, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 309, + "fields": { + "school_day": 21, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 310, + "fields": { + "school_day": 21, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 311, + "fields": { + "school_day": 21, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 312, + "fields": { + "school_day": 21, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 313, + "fields": { + "school_day": 21, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 314, + "fields": { + "school_day": 21, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 315, + "fields": { + "school_day": 21, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 316, + "fields": { + "school_day": 21, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 317, + "fields": { + "school_day": 21, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 318, + "fields": { + "school_day": 21, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 319, + "fields": { + "school_day": 21, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 320, + "fields": { + "school_day": 21, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 322, + "fields": { + "school_day": 22, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 323, + "fields": { + "school_day": 22, + "student": 4, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 324, + "fields": { + "school_day": 22, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 325, + "fields": { + "school_day": 22, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 326, + "fields": { + "school_day": 22, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 327, + "fields": { + "school_day": 22, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 328, + "fields": { + "school_day": 22, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 329, + "fields": { + "school_day": 22, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 330, + "fields": { + "school_day": 22, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 331, + "fields": { + "school_day": 22, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 332, + "fields": { + "school_day": 22, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 333, + "fields": { + "school_day": 22, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 334, + "fields": { + "school_day": 22, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 335, + "fields": { + "school_day": 22, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 336, + "fields": { + "school_day": 22, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 338, + "fields": { + "school_day": 23, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 339, + "fields": { + "school_day": 23, + "student": 4, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 340, + "fields": { + "school_day": 23, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 341, + "fields": { + "school_day": 23, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 342, + "fields": { + "school_day": 23, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 343, + "fields": { + "school_day": 23, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 344, + "fields": { + "school_day": 23, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 345, + "fields": { + "school_day": 23, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 346, + "fields": { + "school_day": 23, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 347, + "fields": { + "school_day": 23, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 348, + "fields": { + "school_day": 23, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 349, + "fields": { + "school_day": 23, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 350, + "fields": { + "school_day": 23, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 351, + "fields": { + "school_day": 23, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 352, + "fields": { + "school_day": 23, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 354, + "fields": { + "school_day": 24, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 355, + "fields": { + "school_day": 24, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 356, + "fields": { + "school_day": 24, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 357, + "fields": { + "school_day": 24, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 358, + "fields": { + "school_day": 24, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 359, + "fields": { + "school_day": 24, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 360, + "fields": { + "school_day": 24, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 361, + "fields": { + "school_day": 24, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 362, + "fields": { + "school_day": 24, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 363, + "fields": { + "school_day": 24, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 364, + "fields": { + "school_day": 24, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 365, + "fields": { + "school_day": 24, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 366, + "fields": { + "school_day": 24, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 367, + "fields": { + "school_day": 24, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 368, + "fields": { + "school_day": 24, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 370, + "fields": { + "school_day": 25, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 371, + "fields": { + "school_day": 25, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 372, + "fields": { + "school_day": 25, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 373, + "fields": { + "school_day": 25, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 374, + "fields": { + "school_day": 25, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 375, + "fields": { + "school_day": 25, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 376, + "fields": { + "school_day": 25, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 377, + "fields": { + "school_day": 25, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 378, + "fields": { + "school_day": 25, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 379, + "fields": { + "school_day": 25, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 380, + "fields": { + "school_day": 25, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 381, + "fields": { + "school_day": 25, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 382, + "fields": { + "school_day": 25, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 383, + "fields": { + "school_day": 25, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 384, + "fields": { + "school_day": 25, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 386, + "fields": { + "school_day": 26, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 387, + "fields": { + "school_day": 26, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 388, + "fields": { + "school_day": 26, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 389, + "fields": { + "school_day": 26, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 390, + "fields": { + "school_day": 26, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 391, + "fields": { + "school_day": 26, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 392, + "fields": { + "school_day": 26, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 393, + "fields": { + "school_day": 26, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 394, + "fields": { + "school_day": 26, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 395, + "fields": { + "school_day": 26, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 396, + "fields": { + "school_day": 26, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 397, + "fields": { + "school_day": 26, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 398, + "fields": { + "school_day": 26, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 399, + "fields": { + "school_day": 26, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 400, + "fields": { + "school_day": 26, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 402, + "fields": { + "school_day": 27, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 403, + "fields": { + "school_day": 27, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 404, + "fields": { + "school_day": 27, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 405, + "fields": { + "school_day": 27, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 406, + "fields": { + "school_day": 27, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 407, + "fields": { + "school_day": 27, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 408, + "fields": { + "school_day": 27, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 409, + "fields": { + "school_day": 27, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 410, + "fields": { + "school_day": 27, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 411, + "fields": { + "school_day": 27, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 412, + "fields": { + "school_day": 27, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 413, + "fields": { + "school_day": 27, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 414, + "fields": { + "school_day": 27, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 415, + "fields": { + "school_day": 27, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 416, + "fields": { + "school_day": 27, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 418, + "fields": { + "school_day": 28, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 419, + "fields": { + "school_day": 28, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 420, + "fields": { + "school_day": 28, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 421, + "fields": { + "school_day": 28, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 422, + "fields": { + "school_day": 28, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 423, + "fields": { + "school_day": 28, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 424, + "fields": { + "school_day": 28, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 425, + "fields": { + "school_day": 28, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 426, + "fields": { + "school_day": 28, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 427, + "fields": { + "school_day": 28, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 428, + "fields": { + "school_day": 28, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 429, + "fields": { + "school_day": 28, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 430, + "fields": { + "school_day": 28, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 431, + "fields": { + "school_day": 28, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 432, + "fields": { + "school_day": 28, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 434, + "fields": { + "school_day": 29, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 435, + "fields": { + "school_day": 29, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 436, + "fields": { + "school_day": 29, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 437, + "fields": { + "school_day": 29, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 438, + "fields": { + "school_day": 29, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 439, + "fields": { + "school_day": 29, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 440, + "fields": { + "school_day": 29, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 441, + "fields": { + "school_day": 29, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 442, + "fields": { + "school_day": 29, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 443, + "fields": { + "school_day": 29, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 444, + "fields": { + "school_day": 29, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 445, + "fields": { + "school_day": 29, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 446, + "fields": { + "school_day": 29, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 447, + "fields": { + "school_day": 29, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 448, + "fields": { + "school_day": 29, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 450, + "fields": { + "school_day": 30, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 451, + "fields": { + "school_day": 30, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 452, + "fields": { + "school_day": 30, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 453, + "fields": { + "school_day": 30, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 454, + "fields": { + "school_day": 30, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 455, + "fields": { + "school_day": 30, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 456, + "fields": { + "school_day": 30, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 457, + "fields": { + "school_day": 30, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 458, + "fields": { + "school_day": 30, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 459, + "fields": { + "school_day": 30, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 460, + "fields": { + "school_day": 30, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 461, + "fields": { + "school_day": 30, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 462, + "fields": { + "school_day": 30, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 463, + "fields": { + "school_day": 30, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 464, + "fields": { + "school_day": 30, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 466, + "fields": { + "school_day": 31, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 467, + "fields": { + "school_day": 31, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 468, + "fields": { + "school_day": 31, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 469, + "fields": { + "school_day": 31, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 470, + "fields": { + "school_day": 31, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 471, + "fields": { + "school_day": 31, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 472, + "fields": { + "school_day": 31, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 473, + "fields": { + "school_day": 31, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 474, + "fields": { + "school_day": 31, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 475, + "fields": { + "school_day": 31, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 476, + "fields": { + "school_day": 31, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 477, + "fields": { + "school_day": 31, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 478, + "fields": { + "school_day": 31, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 479, + "fields": { + "school_day": 31, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 480, + "fields": { + "school_day": 31, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 482, + "fields": { + "school_day": 32, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 483, + "fields": { + "school_day": 32, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 484, + "fields": { + "school_day": 32, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 485, + "fields": { + "school_day": 32, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 486, + "fields": { + "school_day": 32, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 487, + "fields": { + "school_day": 32, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 488, + "fields": { + "school_day": 32, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 489, + "fields": { + "school_day": 32, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 490, + "fields": { + "school_day": 32, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 491, + "fields": { + "school_day": 32, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 492, + "fields": { + "school_day": 32, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 493, + "fields": { + "school_day": 32, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 494, + "fields": { + "school_day": 32, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 495, + "fields": { + "school_day": 32, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 496, + "fields": { + "school_day": 32, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 498, + "fields": { + "school_day": 33, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 499, + "fields": { + "school_day": 33, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 500, + "fields": { + "school_day": 33, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 501, + "fields": { + "school_day": 33, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 502, + "fields": { + "school_day": 33, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 503, + "fields": { + "school_day": 33, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 504, + "fields": { + "school_day": 33, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 505, + "fields": { + "school_day": 33, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 506, + "fields": { + "school_day": 33, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 507, + "fields": { + "school_day": 33, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 508, + "fields": { + "school_day": 33, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 509, + "fields": { + "school_day": 33, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 510, + "fields": { + "school_day": 33, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 511, + "fields": { + "school_day": 33, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 512, + "fields": { + "school_day": 33, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 514, + "fields": { + "school_day": 34, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 515, + "fields": { + "school_day": 34, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 516, + "fields": { + "school_day": 34, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 517, + "fields": { + "school_day": 34, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 518, + "fields": { + "school_day": 34, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 519, + "fields": { + "school_day": 34, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 520, + "fields": { + "school_day": 34, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 521, + "fields": { + "school_day": 34, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 522, + "fields": { + "school_day": 34, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 523, + "fields": { + "school_day": 34, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 524, + "fields": { + "school_day": 34, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 525, + "fields": { + "school_day": 34, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 526, + "fields": { + "school_day": 34, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 527, + "fields": { + "school_day": 34, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 528, + "fields": { + "school_day": 34, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 530, + "fields": { + "school_day": 35, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 531, + "fields": { + "school_day": 35, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 532, + "fields": { + "school_day": 35, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 533, + "fields": { + "school_day": 35, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 534, + "fields": { + "school_day": 35, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 535, + "fields": { + "school_day": 35, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 536, + "fields": { + "school_day": 35, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 537, + "fields": { + "school_day": 35, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 538, + "fields": { + "school_day": 35, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 539, + "fields": { + "school_day": 35, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 540, + "fields": { + "school_day": 35, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 541, + "fields": { + "school_day": 35, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 542, + "fields": { + "school_day": 35, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 543, + "fields": { + "school_day": 35, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 544, + "fields": { + "school_day": 35, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 546, + "fields": { + "school_day": 36, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 547, + "fields": { + "school_day": 36, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 548, + "fields": { + "school_day": 36, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 549, + "fields": { + "school_day": 36, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 550, + "fields": { + "school_day": 36, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 551, + "fields": { + "school_day": 36, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 552, + "fields": { + "school_day": 36, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 553, + "fields": { + "school_day": 36, + "student": 9, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 554, + "fields": { + "school_day": 36, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 555, + "fields": { + "school_day": 36, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 556, + "fields": { + "school_day": 36, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 557, + "fields": { + "school_day": 36, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 558, + "fields": { + "school_day": 36, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 559, + "fields": { + "school_day": 36, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 560, + "fields": { + "school_day": 36, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 562, + "fields": { + "school_day": 37, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 563, + "fields": { + "school_day": 37, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 564, + "fields": { + "school_day": 37, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 565, + "fields": { + "school_day": 37, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 566, + "fields": { + "school_day": 37, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 567, + "fields": { + "school_day": 37, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 568, + "fields": { + "school_day": 37, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 569, + "fields": { + "school_day": 37, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 570, + "fields": { + "school_day": 37, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 571, + "fields": { + "school_day": 37, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 572, + "fields": { + "school_day": 37, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 573, + "fields": { + "school_day": 37, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 574, + "fields": { + "school_day": 37, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 575, + "fields": { + "school_day": 37, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 576, + "fields": { + "school_day": 37, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 578, + "fields": { + "school_day": 38, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 579, + "fields": { + "school_day": 38, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 580, + "fields": { + "school_day": 38, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 581, + "fields": { + "school_day": 38, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 582, + "fields": { + "school_day": 38, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 583, + "fields": { + "school_day": 38, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 584, + "fields": { + "school_day": 38, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 585, + "fields": { + "school_day": 38, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 586, + "fields": { + "school_day": 38, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 587, + "fields": { + "school_day": 38, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 588, + "fields": { + "school_day": 38, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 589, + "fields": { + "school_day": 38, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 590, + "fields": { + "school_day": 38, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 591, + "fields": { + "school_day": 38, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 592, + "fields": { + "school_day": 38, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 594, + "fields": { + "school_day": 39, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 595, + "fields": { + "school_day": 39, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 596, + "fields": { + "school_day": 39, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 597, + "fields": { + "school_day": 39, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 598, + "fields": { + "school_day": 39, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 599, + "fields": { + "school_day": 39, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 600, + "fields": { + "school_day": 39, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 601, + "fields": { + "school_day": 39, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 602, + "fields": { + "school_day": 39, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 603, + "fields": { + "school_day": 39, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 604, + "fields": { + "school_day": 39, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 605, + "fields": { + "school_day": 39, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 606, + "fields": { + "school_day": 39, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 607, + "fields": { + "school_day": 39, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 608, + "fields": { + "school_day": 39, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 610, + "fields": { + "school_day": 40, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 611, + "fields": { + "school_day": 40, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 612, + "fields": { + "school_day": 40, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 613, + "fields": { + "school_day": 40, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 614, + "fields": { + "school_day": 40, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 615, + "fields": { + "school_day": 40, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 616, + "fields": { + "school_day": 40, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 617, + "fields": { + "school_day": 40, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 618, + "fields": { + "school_day": 40, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 619, + "fields": { + "school_day": 40, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 620, + "fields": { + "school_day": 40, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 621, + "fields": { + "school_day": 40, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 622, + "fields": { + "school_day": 40, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 623, + "fields": { + "school_day": 40, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 624, + "fields": { + "school_day": 40, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 626, + "fields": { + "school_day": 41, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 627, + "fields": { + "school_day": 41, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 628, + "fields": { + "school_day": 41, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 629, + "fields": { + "school_day": 41, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 630, + "fields": { + "school_day": 41, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 631, + "fields": { + "school_day": 41, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 632, + "fields": { + "school_day": 41, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 633, + "fields": { + "school_day": 41, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 634, + "fields": { + "school_day": 41, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 635, + "fields": { + "school_day": 41, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 636, + "fields": { + "school_day": 41, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 637, + "fields": { + "school_day": 41, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 638, + "fields": { + "school_day": 41, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 639, + "fields": { + "school_day": 41, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 640, + "fields": { + "school_day": 41, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 642, + "fields": { + "school_day": 42, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 643, + "fields": { + "school_day": 42, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 644, + "fields": { + "school_day": 42, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 645, + "fields": { + "school_day": 42, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 646, + "fields": { + "school_day": 42, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 647, + "fields": { + "school_day": 42, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 648, + "fields": { + "school_day": 42, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 649, + "fields": { + "school_day": 42, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 650, + "fields": { + "school_day": 42, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 651, + "fields": { + "school_day": 42, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 652, + "fields": { + "school_day": 42, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 653, + "fields": { + "school_day": 42, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 654, + "fields": { + "school_day": 42, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 655, + "fields": { + "school_day": 42, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 656, + "fields": { + "school_day": 42, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 658, + "fields": { + "school_day": 43, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 659, + "fields": { + "school_day": 43, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 660, + "fields": { + "school_day": 43, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 661, + "fields": { + "school_day": 43, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 662, + "fields": { + "school_day": 43, + "student": 12, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 663, + "fields": { + "school_day": 43, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 664, + "fields": { + "school_day": 43, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 665, + "fields": { + "school_day": 43, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 666, + "fields": { + "school_day": 43, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 667, + "fields": { + "school_day": 43, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 668, + "fields": { + "school_day": 43, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 669, + "fields": { + "school_day": 43, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 670, + "fields": { + "school_day": 43, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 671, + "fields": { + "school_day": 43, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 672, + "fields": { + "school_day": 43, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 674, + "fields": { + "school_day": 44, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 675, + "fields": { + "school_day": 44, + "student": 4, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 676, + "fields": { + "school_day": 44, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 677, + "fields": { + "school_day": 44, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 678, + "fields": { + "school_day": 44, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 679, + "fields": { + "school_day": 44, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 680, + "fields": { + "school_day": 44, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 681, + "fields": { + "school_day": 44, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 682, + "fields": { + "school_day": 44, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 683, + "fields": { + "school_day": 44, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 684, + "fields": { + "school_day": 44, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 685, + "fields": { + "school_day": 44, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 686, + "fields": { + "school_day": 44, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 687, + "fields": { + "school_day": 44, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 688, + "fields": { + "school_day": 44, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 690, + "fields": { + "school_day": 45, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 691, + "fields": { + "school_day": 45, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 692, + "fields": { + "school_day": 45, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 693, + "fields": { + "school_day": 45, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 694, + "fields": { + "school_day": 45, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 695, + "fields": { + "school_day": 45, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 696, + "fields": { + "school_day": 45, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 697, + "fields": { + "school_day": 45, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 698, + "fields": { + "school_day": 45, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 699, + "fields": { + "school_day": 45, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 700, + "fields": { + "school_day": 45, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 701, + "fields": { + "school_day": 45, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 702, + "fields": { + "school_day": 45, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 703, + "fields": { + "school_day": 45, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 704, + "fields": { + "school_day": 45, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 706, + "fields": { + "school_day": 46, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 707, + "fields": { + "school_day": 46, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 708, + "fields": { + "school_day": 46, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 709, + "fields": { + "school_day": 46, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 710, + "fields": { + "school_day": 46, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 711, + "fields": { + "school_day": 46, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 712, + "fields": { + "school_day": 46, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 713, + "fields": { + "school_day": 46, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 714, + "fields": { + "school_day": 46, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 715, + "fields": { + "school_day": 46, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 716, + "fields": { + "school_day": 46, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 717, + "fields": { + "school_day": 46, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 718, + "fields": { + "school_day": 46, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 719, + "fields": { + "school_day": 46, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 720, + "fields": { + "school_day": 46, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 722, + "fields": { + "school_day": 47, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 723, + "fields": { + "school_day": 47, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 724, + "fields": { + "school_day": 47, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 725, + "fields": { + "school_day": 47, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 726, + "fields": { + "school_day": 47, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 727, + "fields": { + "school_day": 47, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 728, + "fields": { + "school_day": 47, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 729, + "fields": { + "school_day": 47, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 730, + "fields": { + "school_day": 47, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 731, + "fields": { + "school_day": 47, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 732, + "fields": { + "school_day": 47, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 733, + "fields": { + "school_day": 47, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 734, + "fields": { + "school_day": 47, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 735, + "fields": { + "school_day": 47, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 736, + "fields": { + "school_day": 47, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 738, + "fields": { + "school_day": 48, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 739, + "fields": { + "school_day": 48, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 740, + "fields": { + "school_day": 48, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 741, + "fields": { + "school_day": 48, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 742, + "fields": { + "school_day": 48, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 743, + "fields": { + "school_day": 48, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 744, + "fields": { + "school_day": 48, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 745, + "fields": { + "school_day": 48, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 746, + "fields": { + "school_day": 48, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 747, + "fields": { + "school_day": 48, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 748, + "fields": { + "school_day": 48, + "student": 19, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 749, + "fields": { + "school_day": 48, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 750, + "fields": { + "school_day": 48, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 751, + "fields": { + "school_day": 48, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 752, + "fields": { + "school_day": 48, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 754, + "fields": { + "school_day": 49, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 755, + "fields": { + "school_day": 49, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 756, + "fields": { + "school_day": 49, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 757, + "fields": { + "school_day": 49, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 758, + "fields": { + "school_day": 49, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 759, + "fields": { + "school_day": 49, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 760, + "fields": { + "school_day": 49, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 761, + "fields": { + "school_day": 49, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 762, + "fields": { + "school_day": 49, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 763, + "fields": { + "school_day": 49, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 764, + "fields": { + "school_day": 49, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 765, + "fields": { + "school_day": 49, + "student": 15, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 766, + "fields": { + "school_day": 49, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 767, + "fields": { + "school_day": 49, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 768, + "fields": { + "school_day": 49, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 770, + "fields": { + "school_day": 50, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 771, + "fields": { + "school_day": 50, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 772, + "fields": { + "school_day": 50, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 773, + "fields": { + "school_day": 50, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 774, + "fields": { + "school_day": 50, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 775, + "fields": { + "school_day": 50, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 776, + "fields": { + "school_day": 50, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 777, + "fields": { + "school_day": 50, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 778, + "fields": { + "school_day": 50, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 779, + "fields": { + "school_day": 50, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 780, + "fields": { + "school_day": 50, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 781, + "fields": { + "school_day": 50, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 782, + "fields": { + "school_day": 50, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 783, + "fields": { + "school_day": 50, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 784, + "fields": { + "school_day": 50, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 786, + "fields": { + "school_day": 51, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 787, + "fields": { + "school_day": 51, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 788, + "fields": { + "school_day": 51, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 789, + "fields": { + "school_day": 51, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 790, + "fields": { + "school_day": 51, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 791, + "fields": { + "school_day": 51, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 792, + "fields": { + "school_day": 51, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 793, + "fields": { + "school_day": 51, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 794, + "fields": { + "school_day": 51, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 795, + "fields": { + "school_day": 51, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 796, + "fields": { + "school_day": 51, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 797, + "fields": { + "school_day": 51, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 798, + "fields": { + "school_day": 51, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 799, + "fields": { + "school_day": 51, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 800, + "fields": { + "school_day": 51, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 802, + "fields": { + "school_day": 52, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 803, + "fields": { + "school_day": 52, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 804, + "fields": { + "school_day": 52, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 805, + "fields": { + "school_day": 52, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 806, + "fields": { + "school_day": 52, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 807, + "fields": { + "school_day": 52, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 808, + "fields": { + "school_day": 52, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 809, + "fields": { + "school_day": 52, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 810, + "fields": { + "school_day": 52, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 811, + "fields": { + "school_day": 52, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 812, + "fields": { + "school_day": 52, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 813, + "fields": { + "school_day": 52, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 814, + "fields": { + "school_day": 52, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 815, + "fields": { + "school_day": 52, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 816, + "fields": { + "school_day": 52, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 818, + "fields": { + "school_day": 53, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 819, + "fields": { + "school_day": 53, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 820, + "fields": { + "school_day": 53, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 821, + "fields": { + "school_day": 53, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 822, + "fields": { + "school_day": 53, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 823, + "fields": { + "school_day": 53, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 824, + "fields": { + "school_day": 53, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 825, + "fields": { + "school_day": 53, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 826, + "fields": { + "school_day": 53, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 827, + "fields": { + "school_day": 53, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 828, + "fields": { + "school_day": 53, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 829, + "fields": { + "school_day": 53, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 830, + "fields": { + "school_day": 53, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 831, + "fields": { + "school_day": 53, + "student": 11, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 832, + "fields": { + "school_day": 53, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 834, + "fields": { + "school_day": 54, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 835, + "fields": { + "school_day": 54, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 836, + "fields": { + "school_day": 54, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 837, + "fields": { + "school_day": 54, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 838, + "fields": { + "school_day": 54, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 839, + "fields": { + "school_day": 54, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 840, + "fields": { + "school_day": 54, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 841, + "fields": { + "school_day": 54, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 842, + "fields": { + "school_day": 54, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 843, + "fields": { + "school_day": 54, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 844, + "fields": { + "school_day": 54, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 845, + "fields": { + "school_day": 54, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 846, + "fields": { + "school_day": 54, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 847, + "fields": { + "school_day": 54, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 848, + "fields": { + "school_day": 54, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 850, + "fields": { + "school_day": 55, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 851, + "fields": { + "school_day": 55, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 852, + "fields": { + "school_day": 55, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 853, + "fields": { + "school_day": 55, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 854, + "fields": { + "school_day": 55, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 855, + "fields": { + "school_day": 55, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 856, + "fields": { + "school_day": 55, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 857, + "fields": { + "school_day": 55, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 858, + "fields": { + "school_day": 55, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 859, + "fields": { + "school_day": 55, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 860, + "fields": { + "school_day": 55, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 861, + "fields": { + "school_day": 55, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 862, + "fields": { + "school_day": 55, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 863, + "fields": { + "school_day": 55, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 864, + "fields": { + "school_day": 55, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 866, + "fields": { + "school_day": 56, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 867, + "fields": { + "school_day": 56, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 868, + "fields": { + "school_day": 56, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 869, + "fields": { + "school_day": 56, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 870, + "fields": { + "school_day": 56, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 871, + "fields": { + "school_day": 56, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 872, + "fields": { + "school_day": 56, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 873, + "fields": { + "school_day": 56, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 874, + "fields": { + "school_day": 56, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 875, + "fields": { + "school_day": 56, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 876, + "fields": { + "school_day": 56, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 877, + "fields": { + "school_day": 56, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 878, + "fields": { + "school_day": 56, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 879, + "fields": { + "school_day": 56, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 880, + "fields": { + "school_day": 56, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 882, + "fields": { + "school_day": 57, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 883, + "fields": { + "school_day": 57, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 884, + "fields": { + "school_day": 57, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 885, + "fields": { + "school_day": 57, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 886, + "fields": { + "school_day": 57, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 887, + "fields": { + "school_day": 57, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 888, + "fields": { + "school_day": 57, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 889, + "fields": { + "school_day": 57, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 890, + "fields": { + "school_day": 57, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 891, + "fields": { + "school_day": 57, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 892, + "fields": { + "school_day": 57, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 893, + "fields": { + "school_day": 57, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 894, + "fields": { + "school_day": 57, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 895, + "fields": { + "school_day": 57, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 896, + "fields": { + "school_day": 57, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 898, + "fields": { + "school_day": 58, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 899, + "fields": { + "school_day": 58, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 900, + "fields": { + "school_day": 58, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 901, + "fields": { + "school_day": 58, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 902, + "fields": { + "school_day": 58, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 903, + "fields": { + "school_day": 58, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 904, + "fields": { + "school_day": 58, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 905, + "fields": { + "school_day": 58, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 906, + "fields": { + "school_day": 58, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 907, + "fields": { + "school_day": 58, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 908, + "fields": { + "school_day": 58, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 909, + "fields": { + "school_day": 58, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 910, + "fields": { + "school_day": 58, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 911, + "fields": { + "school_day": 58, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 912, + "fields": { + "school_day": 58, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 914, + "fields": { + "school_day": 59, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 915, + "fields": { + "school_day": 59, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 916, + "fields": { + "school_day": 59, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 917, + "fields": { + "school_day": 59, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 918, + "fields": { + "school_day": 59, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 919, + "fields": { + "school_day": 59, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 920, + "fields": { + "school_day": 59, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 921, + "fields": { + "school_day": 59, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 922, + "fields": { + "school_day": 59, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 923, + "fields": { + "school_day": 59, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 924, + "fields": { + "school_day": 59, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 925, + "fields": { + "school_day": 59, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 926, + "fields": { + "school_day": 59, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 927, + "fields": { + "school_day": 59, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 928, + "fields": { + "school_day": 59, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 930, + "fields": { + "school_day": 60, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 931, + "fields": { + "school_day": 60, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 932, + "fields": { + "school_day": 60, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 933, + "fields": { + "school_day": 60, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 934, + "fields": { + "school_day": 60, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 935, + "fields": { + "school_day": 60, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 936, + "fields": { + "school_day": 60, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 937, + "fields": { + "school_day": 60, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 938, + "fields": { + "school_day": 60, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 939, + "fields": { + "school_day": 60, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 940, + "fields": { + "school_day": 60, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 941, + "fields": { + "school_day": 60, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 942, + "fields": { + "school_day": 60, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 943, + "fields": { + "school_day": 60, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 944, + "fields": { + "school_day": 60, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 946, + "fields": { + "school_day": 61, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 947, + "fields": { + "school_day": 61, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 948, + "fields": { + "school_day": 61, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 949, + "fields": { + "school_day": 61, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 950, + "fields": { + "school_day": 61, + "student": 12, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 951, + "fields": { + "school_day": 61, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 952, + "fields": { + "school_day": 61, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 953, + "fields": { + "school_day": 61, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 954, + "fields": { + "school_day": 61, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 955, + "fields": { + "school_day": 61, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 956, + "fields": { + "school_day": 61, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 957, + "fields": { + "school_day": 61, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 958, + "fields": { + "school_day": 61, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 959, + "fields": { + "school_day": 61, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 960, + "fields": { + "school_day": 61, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 962, + "fields": { + "school_day": 62, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 963, + "fields": { + "school_day": 62, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 964, + "fields": { + "school_day": 62, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 965, + "fields": { + "school_day": 62, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 966, + "fields": { + "school_day": 62, + "student": 12, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 967, + "fields": { + "school_day": 62, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 968, + "fields": { + "school_day": 62, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 969, + "fields": { + "school_day": 62, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 970, + "fields": { + "school_day": 62, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 971, + "fields": { + "school_day": 62, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 972, + "fields": { + "school_day": 62, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 973, + "fields": { + "school_day": 62, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 974, + "fields": { + "school_day": 62, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 975, + "fields": { + "school_day": 62, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 976, + "fields": { + "school_day": 62, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 978, + "fields": { + "school_day": 63, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 979, + "fields": { + "school_day": 63, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 980, + "fields": { + "school_day": 63, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 981, + "fields": { + "school_day": 63, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 982, + "fields": { + "school_day": 63, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 983, + "fields": { + "school_day": 63, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 984, + "fields": { + "school_day": 63, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 985, + "fields": { + "school_day": 63, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 986, + "fields": { + "school_day": 63, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 987, + "fields": { + "school_day": 63, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 988, + "fields": { + "school_day": 63, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 989, + "fields": { + "school_day": 63, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 990, + "fields": { + "school_day": 63, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 991, + "fields": { + "school_day": 63, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 992, + "fields": { + "school_day": 63, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 994, + "fields": { + "school_day": 64, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 995, + "fields": { + "school_day": 64, + "student": 4, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 996, + "fields": { + "school_day": 64, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 997, + "fields": { + "school_day": 64, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 998, + "fields": { + "school_day": 64, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 999, + "fields": { + "school_day": 64, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1000, + "fields": { + "school_day": 64, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1001, + "fields": { + "school_day": 64, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1002, + "fields": { + "school_day": 64, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1003, + "fields": { + "school_day": 64, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1004, + "fields": { + "school_day": 64, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1005, + "fields": { + "school_day": 64, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1006, + "fields": { + "school_day": 64, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1007, + "fields": { + "school_day": 64, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1008, + "fields": { + "school_day": 64, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1010, + "fields": { + "school_day": 65, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1011, + "fields": { + "school_day": 65, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1012, + "fields": { + "school_day": 65, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1013, + "fields": { + "school_day": 65, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1014, + "fields": { + "school_day": 65, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1015, + "fields": { + "school_day": 65, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1016, + "fields": { + "school_day": 65, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1017, + "fields": { + "school_day": 65, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1018, + "fields": { + "school_day": 65, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1019, + "fields": { + "school_day": 65, + "student": 6, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1020, + "fields": { + "school_day": 65, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1021, + "fields": { + "school_day": 65, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1022, + "fields": { + "school_day": 65, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1023, + "fields": { + "school_day": 65, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1024, + "fields": { + "school_day": 65, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1026, + "fields": { + "school_day": 66, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1027, + "fields": { + "school_day": 66, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1028, + "fields": { + "school_day": 66, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1029, + "fields": { + "school_day": 66, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1030, + "fields": { + "school_day": 66, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1031, + "fields": { + "school_day": 66, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1032, + "fields": { + "school_day": 66, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1033, + "fields": { + "school_day": 66, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1034, + "fields": { + "school_day": 66, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1035, + "fields": { + "school_day": 66, + "student": 6, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1036, + "fields": { + "school_day": 66, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1037, + "fields": { + "school_day": 66, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1038, + "fields": { + "school_day": 66, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1039, + "fields": { + "school_day": 66, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1040, + "fields": { + "school_day": 66, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1042, + "fields": { + "school_day": 67, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1043, + "fields": { + "school_day": 67, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1044, + "fields": { + "school_day": 67, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1045, + "fields": { + "school_day": 67, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1046, + "fields": { + "school_day": 67, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1047, + "fields": { + "school_day": 67, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1048, + "fields": { + "school_day": 67, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1049, + "fields": { + "school_day": 67, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1050, + "fields": { + "school_day": 67, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1051, + "fields": { + "school_day": 67, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1052, + "fields": { + "school_day": 67, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1053, + "fields": { + "school_day": 67, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1054, + "fields": { + "school_day": 67, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1055, + "fields": { + "school_day": 67, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1056, + "fields": { + "school_day": 67, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1058, + "fields": { + "school_day": 68, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1059, + "fields": { + "school_day": 68, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1060, + "fields": { + "school_day": 68, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1061, + "fields": { + "school_day": 68, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1062, + "fields": { + "school_day": 68, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1063, + "fields": { + "school_day": 68, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1064, + "fields": { + "school_day": 68, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1065, + "fields": { + "school_day": 68, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1066, + "fields": { + "school_day": 68, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1067, + "fields": { + "school_day": 68, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1068, + "fields": { + "school_day": 68, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1069, + "fields": { + "school_day": 68, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1070, + "fields": { + "school_day": 68, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1071, + "fields": { + "school_day": 68, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1072, + "fields": { + "school_day": 68, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1074, + "fields": { + "school_day": 69, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1075, + "fields": { + "school_day": 69, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1076, + "fields": { + "school_day": 69, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1077, + "fields": { + "school_day": 69, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1078, + "fields": { + "school_day": 69, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1079, + "fields": { + "school_day": 69, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1080, + "fields": { + "school_day": 69, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1081, + "fields": { + "school_day": 69, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1082, + "fields": { + "school_day": 69, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1083, + "fields": { + "school_day": 69, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1084, + "fields": { + "school_day": 69, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1085, + "fields": { + "school_day": 69, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1086, + "fields": { + "school_day": 69, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1087, + "fields": { + "school_day": 69, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1088, + "fields": { + "school_day": 69, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1090, + "fields": { + "school_day": 70, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1091, + "fields": { + "school_day": 70, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1092, + "fields": { + "school_day": 70, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1093, + "fields": { + "school_day": 70, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1094, + "fields": { + "school_day": 70, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1095, + "fields": { + "school_day": 70, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1096, + "fields": { + "school_day": 70, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1097, + "fields": { + "school_day": 70, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1098, + "fields": { + "school_day": 70, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1099, + "fields": { + "school_day": 70, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1100, + "fields": { + "school_day": 70, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1101, + "fields": { + "school_day": 70, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1102, + "fields": { + "school_day": 70, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1103, + "fields": { + "school_day": 70, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1104, + "fields": { + "school_day": 70, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1105, + "fields": { + "school_day": 71, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1106, + "fields": { + "school_day": 71, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1107, + "fields": { + "school_day": 71, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1108, + "fields": { + "school_day": 71, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1109, + "fields": { + "school_day": 71, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1110, + "fields": { + "school_day": 71, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1111, + "fields": { + "school_day": 71, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1112, + "fields": { + "school_day": 71, + "student": 9, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1113, + "fields": { + "school_day": 71, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1114, + "fields": { + "school_day": 71, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1115, + "fields": { + "school_day": 71, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1116, + "fields": { + "school_day": 71, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1117, + "fields": { + "school_day": 71, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1118, + "fields": { + "school_day": 71, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1119, + "fields": { + "school_day": 71, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1120, + "fields": { + "school_day": 72, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1121, + "fields": { + "school_day": 72, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1122, + "fields": { + "school_day": 72, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1123, + "fields": { + "school_day": 72, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1124, + "fields": { + "school_day": 72, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1125, + "fields": { + "school_day": 72, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1126, + "fields": { + "school_day": 72, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1127, + "fields": { + "school_day": 72, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1128, + "fields": { + "school_day": 72, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1129, + "fields": { + "school_day": 72, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1130, + "fields": { + "school_day": 72, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1131, + "fields": { + "school_day": 72, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1132, + "fields": { + "school_day": 72, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1133, + "fields": { + "school_day": 72, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1134, + "fields": { + "school_day": 72, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1135, + "fields": { + "school_day": 73, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1136, + "fields": { + "school_day": 73, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1137, + "fields": { + "school_day": 73, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1138, + "fields": { + "school_day": 73, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1139, + "fields": { + "school_day": 73, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1140, + "fields": { + "school_day": 73, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1141, + "fields": { + "school_day": 73, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1142, + "fields": { + "school_day": 73, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1143, + "fields": { + "school_day": 73, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1144, + "fields": { + "school_day": 73, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1145, + "fields": { + "school_day": 73, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1146, + "fields": { + "school_day": 73, + "student": 15, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1147, + "fields": { + "school_day": 73, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1148, + "fields": { + "school_day": 73, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1149, + "fields": { + "school_day": 73, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1150, + "fields": { + "school_day": 74, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1151, + "fields": { + "school_day": 74, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1152, + "fields": { + "school_day": 74, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1153, + "fields": { + "school_day": 74, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1154, + "fields": { + "school_day": 74, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1155, + "fields": { + "school_day": 74, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1156, + "fields": { + "school_day": 74, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1157, + "fields": { + "school_day": 74, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1158, + "fields": { + "school_day": 74, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1159, + "fields": { + "school_day": 74, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1160, + "fields": { + "school_day": 74, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1161, + "fields": { + "school_day": 74, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1162, + "fields": { + "school_day": 74, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1163, + "fields": { + "school_day": 74, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1164, + "fields": { + "school_day": 74, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1165, + "fields": { + "school_day": 75, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1166, + "fields": { + "school_day": 75, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1167, + "fields": { + "school_day": 75, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1168, + "fields": { + "school_day": 75, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1169, + "fields": { + "school_day": 75, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1170, + "fields": { + "school_day": 75, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1171, + "fields": { + "school_day": 75, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1172, + "fields": { + "school_day": 75, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1173, + "fields": { + "school_day": 75, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1174, + "fields": { + "school_day": 75, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1175, + "fields": { + "school_day": 75, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1176, + "fields": { + "school_day": 75, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1177, + "fields": { + "school_day": 75, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1178, + "fields": { + "school_day": 75, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1179, + "fields": { + "school_day": 75, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1180, + "fields": { + "school_day": 76, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1181, + "fields": { + "school_day": 76, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1182, + "fields": { + "school_day": 76, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1183, + "fields": { + "school_day": 76, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1184, + "fields": { + "school_day": 76, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1185, + "fields": { + "school_day": 76, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1186, + "fields": { + "school_day": 76, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1187, + "fields": { + "school_day": 76, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1188, + "fields": { + "school_day": 76, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1189, + "fields": { + "school_day": 76, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1190, + "fields": { + "school_day": 76, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1191, + "fields": { + "school_day": 76, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1192, + "fields": { + "school_day": 76, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1193, + "fields": { + "school_day": 76, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1194, + "fields": { + "school_day": 76, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1195, + "fields": { + "school_day": 77, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1196, + "fields": { + "school_day": 77, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1197, + "fields": { + "school_day": 77, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1198, + "fields": { + "school_day": 77, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1199, + "fields": { + "school_day": 77, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1200, + "fields": { + "school_day": 77, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1201, + "fields": { + "school_day": 77, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1202, + "fields": { + "school_day": 77, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1203, + "fields": { + "school_day": 77, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1204, + "fields": { + "school_day": 77, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1205, + "fields": { + "school_day": 77, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1206, + "fields": { + "school_day": 77, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1207, + "fields": { + "school_day": 77, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1208, + "fields": { + "school_day": 77, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1209, + "fields": { + "school_day": 77, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1217, + "fields": { + "school_day": 78, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1218, + "fields": { + "school_day": 78, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1219, + "fields": { + "school_day": 78, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1220, + "fields": { + "school_day": 78, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1221, + "fields": { + "school_day": 78, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1222, + "fields": { + "school_day": 78, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1223, + "fields": { + "school_day": 78, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1224, + "fields": { + "school_day": 78, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1225, + "fields": { + "school_day": 78, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1226, + "fields": { + "school_day": 78, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1227, + "fields": { + "school_day": 78, + "student": 19, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1228, + "fields": { + "school_day": 78, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1229, + "fields": { + "school_day": 78, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1230, + "fields": { + "school_day": 78, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1231, + "fields": { + "school_day": 78, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1239, + "fields": { + "school_day": 79, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1240, + "fields": { + "school_day": 79, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1241, + "fields": { + "school_day": 79, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1242, + "fields": { + "school_day": 79, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1243, + "fields": { + "school_day": 79, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1244, + "fields": { + "school_day": 79, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1245, + "fields": { + "school_day": 79, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1246, + "fields": { + "school_day": 79, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1247, + "fields": { + "school_day": 79, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1248, + "fields": { + "school_day": 79, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1249, + "fields": { + "school_day": 79, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1250, + "fields": { + "school_day": 79, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1251, + "fields": { + "school_day": 79, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1252, + "fields": { + "school_day": 79, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1253, + "fields": { + "school_day": 79, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1261, + "fields": { + "school_day": 80, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1262, + "fields": { + "school_day": 80, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1263, + "fields": { + "school_day": 80, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1264, + "fields": { + "school_day": 80, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1265, + "fields": { + "school_day": 80, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1266, + "fields": { + "school_day": 80, + "student": 14, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1267, + "fields": { + "school_day": 80, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1268, + "fields": { + "school_day": 80, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1269, + "fields": { + "school_day": 80, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1270, + "fields": { + "school_day": 80, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1271, + "fields": { + "school_day": 80, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1272, + "fields": { + "school_day": 80, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1273, + "fields": { + "school_day": 80, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1274, + "fields": { + "school_day": 80, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1275, + "fields": { + "school_day": 80, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1283, + "fields": { + "school_day": 81, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1284, + "fields": { + "school_day": 81, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1285, + "fields": { + "school_day": 81, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1286, + "fields": { + "school_day": 81, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1287, + "fields": { + "school_day": 81, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1288, + "fields": { + "school_day": 81, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1289, + "fields": { + "school_day": 81, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1290, + "fields": { + "school_day": 81, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1291, + "fields": { + "school_day": 81, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1292, + "fields": { + "school_day": 81, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1293, + "fields": { + "school_day": 81, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1294, + "fields": { + "school_day": 81, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1295, + "fields": { + "school_day": 81, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1296, + "fields": { + "school_day": 81, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1297, + "fields": { + "school_day": 81, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1305, + "fields": { + "school_day": 82, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1306, + "fields": { + "school_day": 82, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1307, + "fields": { + "school_day": 82, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1308, + "fields": { + "school_day": 82, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1309, + "fields": { + "school_day": 82, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1310, + "fields": { + "school_day": 82, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1311, + "fields": { + "school_day": 82, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1312, + "fields": { + "school_day": 82, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1313, + "fields": { + "school_day": 82, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1314, + "fields": { + "school_day": 82, + "student": 6, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1315, + "fields": { + "school_day": 82, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1316, + "fields": { + "school_day": 82, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1317, + "fields": { + "school_day": 82, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1318, + "fields": { + "school_day": 82, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1319, + "fields": { + "school_day": 82, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1327, + "fields": { + "school_day": 83, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1328, + "fields": { + "school_day": 83, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1329, + "fields": { + "school_day": 83, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1330, + "fields": { + "school_day": 83, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1331, + "fields": { + "school_day": 83, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1332, + "fields": { + "school_day": 83, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1333, + "fields": { + "school_day": 83, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1334, + "fields": { + "school_day": 83, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1335, + "fields": { + "school_day": 83, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1336, + "fields": { + "school_day": 83, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1337, + "fields": { + "school_day": 83, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1338, + "fields": { + "school_day": 83, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1339, + "fields": { + "school_day": 83, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1340, + "fields": { + "school_day": 83, + "student": 11, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1341, + "fields": { + "school_day": 83, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1349, + "fields": { + "school_day": 84, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1350, + "fields": { + "school_day": 84, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1351, + "fields": { + "school_day": 84, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1352, + "fields": { + "school_day": 84, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1353, + "fields": { + "school_day": 84, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1354, + "fields": { + "school_day": 84, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1355, + "fields": { + "school_day": 84, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1356, + "fields": { + "school_day": 84, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1357, + "fields": { + "school_day": 84, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1358, + "fields": { + "school_day": 84, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1359, + "fields": { + "school_day": 84, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1360, + "fields": { + "school_day": 84, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1361, + "fields": { + "school_day": 84, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1362, + "fields": { + "school_day": 84, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1363, + "fields": { + "school_day": 84, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1371, + "fields": { + "school_day": 85, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1372, + "fields": { + "school_day": 85, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1373, + "fields": { + "school_day": 85, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1374, + "fields": { + "school_day": 85, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1375, + "fields": { + "school_day": 85, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1376, + "fields": { + "school_day": 85, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1377, + "fields": { + "school_day": 85, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1378, + "fields": { + "school_day": 85, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1379, + "fields": { + "school_day": 85, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1380, + "fields": { + "school_day": 85, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1381, + "fields": { + "school_day": 85, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1382, + "fields": { + "school_day": 85, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1383, + "fields": { + "school_day": 85, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1384, + "fields": { + "school_day": 85, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1385, + "fields": { + "school_day": 85, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1393, + "fields": { + "school_day": 86, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1394, + "fields": { + "school_day": 86, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1395, + "fields": { + "school_day": 86, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1396, + "fields": { + "school_day": 86, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1397, + "fields": { + "school_day": 86, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1398, + "fields": { + "school_day": 86, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1399, + "fields": { + "school_day": 86, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1400, + "fields": { + "school_day": 86, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1401, + "fields": { + "school_day": 86, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1402, + "fields": { + "school_day": 86, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1403, + "fields": { + "school_day": 86, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1404, + "fields": { + "school_day": 86, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1405, + "fields": { + "school_day": 86, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1406, + "fields": { + "school_day": 86, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1407, + "fields": { + "school_day": 86, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1415, + "fields": { + "school_day": 87, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1416, + "fields": { + "school_day": 87, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1417, + "fields": { + "school_day": 87, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1418, + "fields": { + "school_day": 87, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1419, + "fields": { + "school_day": 87, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1420, + "fields": { + "school_day": 87, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1421, + "fields": { + "school_day": 87, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1422, + "fields": { + "school_day": 87, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1423, + "fields": { + "school_day": 87, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1424, + "fields": { + "school_day": 87, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1425, + "fields": { + "school_day": 87, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1426, + "fields": { + "school_day": 87, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1427, + "fields": { + "school_day": 87, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1428, + "fields": { + "school_day": 87, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1429, + "fields": { + "school_day": 87, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1437, + "fields": { + "school_day": 88, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1438, + "fields": { + "school_day": 88, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1439, + "fields": { + "school_day": 88, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1440, + "fields": { + "school_day": 88, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1441, + "fields": { + "school_day": 88, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1442, + "fields": { + "school_day": 88, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1443, + "fields": { + "school_day": 88, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1444, + "fields": { + "school_day": 88, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1445, + "fields": { + "school_day": 88, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1446, + "fields": { + "school_day": 88, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1447, + "fields": { + "school_day": 88, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1448, + "fields": { + "school_day": 88, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1449, + "fields": { + "school_day": 88, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1450, + "fields": { + "school_day": 88, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1451, + "fields": { + "school_day": 88, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1459, + "fields": { + "school_day": 89, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1460, + "fields": { + "school_day": 89, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1461, + "fields": { + "school_day": 89, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1462, + "fields": { + "school_day": 89, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1463, + "fields": { + "school_day": 89, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1464, + "fields": { + "school_day": 89, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1465, + "fields": { + "school_day": 89, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1466, + "fields": { + "school_day": 89, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1467, + "fields": { + "school_day": 89, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1468, + "fields": { + "school_day": 89, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1469, + "fields": { + "school_day": 89, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1470, + "fields": { + "school_day": 89, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1471, + "fields": { + "school_day": 89, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1472, + "fields": { + "school_day": 89, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1473, + "fields": { + "school_day": 89, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1481, + "fields": { + "school_day": 90, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1482, + "fields": { + "school_day": 90, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1483, + "fields": { + "school_day": 90, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1484, + "fields": { + "school_day": 90, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1485, + "fields": { + "school_day": 90, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1486, + "fields": { + "school_day": 90, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1487, + "fields": { + "school_day": 90, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1488, + "fields": { + "school_day": 90, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1489, + "fields": { + "school_day": 90, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1490, + "fields": { + "school_day": 90, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1491, + "fields": { + "school_day": 90, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1492, + "fields": { + "school_day": 90, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1493, + "fields": { + "school_day": 90, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1494, + "fields": { + "school_day": 90, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1495, + "fields": { + "school_day": 90, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1503, + "fields": { + "school_day": 91, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1504, + "fields": { + "school_day": 91, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1505, + "fields": { + "school_day": 91, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1506, + "fields": { + "school_day": 91, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1507, + "fields": { + "school_day": 91, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1508, + "fields": { + "school_day": 91, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1509, + "fields": { + "school_day": 91, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1510, + "fields": { + "school_day": 91, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1511, + "fields": { + "school_day": 91, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1512, + "fields": { + "school_day": 91, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1513, + "fields": { + "school_day": 91, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1514, + "fields": { + "school_day": 91, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1515, + "fields": { + "school_day": 91, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1516, + "fields": { + "school_day": 91, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1517, + "fields": { + "school_day": 91, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1525, + "fields": { + "school_day": 92, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1526, + "fields": { + "school_day": 92, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1527, + "fields": { + "school_day": 92, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1528, + "fields": { + "school_day": 92, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1529, + "fields": { + "school_day": 92, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1530, + "fields": { + "school_day": 92, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1531, + "fields": { + "school_day": 92, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1532, + "fields": { + "school_day": 92, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1533, + "fields": { + "school_day": 92, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1534, + "fields": { + "school_day": 92, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1535, + "fields": { + "school_day": 92, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1536, + "fields": { + "school_day": 92, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1537, + "fields": { + "school_day": 92, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1538, + "fields": { + "school_day": 92, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1539, + "fields": { + "school_day": 92, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1547, + "fields": { + "school_day": 93, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1548, + "fields": { + "school_day": 93, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1549, + "fields": { + "school_day": 93, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1550, + "fields": { + "school_day": 93, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1551, + "fields": { + "school_day": 93, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1552, + "fields": { + "school_day": 93, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1553, + "fields": { + "school_day": 93, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1554, + "fields": { + "school_day": 93, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1555, + "fields": { + "school_day": 93, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1556, + "fields": { + "school_day": 93, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1557, + "fields": { + "school_day": 93, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1558, + "fields": { + "school_day": 93, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1559, + "fields": { + "school_day": 93, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1560, + "fields": { + "school_day": 93, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1561, + "fields": { + "school_day": 93, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1569, + "fields": { + "school_day": 94, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1570, + "fields": { + "school_day": 94, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1571, + "fields": { + "school_day": 94, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1572, + "fields": { + "school_day": 94, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1573, + "fields": { + "school_day": 94, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1574, + "fields": { + "school_day": 94, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1575, + "fields": { + "school_day": 94, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1576, + "fields": { + "school_day": 94, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1577, + "fields": { + "school_day": 94, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1578, + "fields": { + "school_day": 94, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1579, + "fields": { + "school_day": 94, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1580, + "fields": { + "school_day": 94, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1581, + "fields": { + "school_day": 94, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1582, + "fields": { + "school_day": 94, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1583, + "fields": { + "school_day": 94, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1591, + "fields": { + "school_day": 95, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1592, + "fields": { + "school_day": 95, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1593, + "fields": { + "school_day": 95, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1594, + "fields": { + "school_day": 95, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1595, + "fields": { + "school_day": 95, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1596, + "fields": { + "school_day": 95, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1597, + "fields": { + "school_day": 95, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1598, + "fields": { + "school_day": 95, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1599, + "fields": { + "school_day": 95, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1600, + "fields": { + "school_day": 95, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1601, + "fields": { + "school_day": 95, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1602, + "fields": { + "school_day": 95, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1603, + "fields": { + "school_day": 95, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1604, + "fields": { + "school_day": 95, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1605, + "fields": { + "school_day": 95, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1613, + "fields": { + "school_day": 96, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1614, + "fields": { + "school_day": 96, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1615, + "fields": { + "school_day": 96, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1616, + "fields": { + "school_day": 96, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1617, + "fields": { + "school_day": 96, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1618, + "fields": { + "school_day": 96, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1619, + "fields": { + "school_day": 96, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1620, + "fields": { + "school_day": 96, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1621, + "fields": { + "school_day": 96, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1622, + "fields": { + "school_day": 96, + "student": 6, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1623, + "fields": { + "school_day": 96, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1624, + "fields": { + "school_day": 96, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1625, + "fields": { + "school_day": 96, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1626, + "fields": { + "school_day": 96, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1627, + "fields": { + "school_day": 96, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1635, + "fields": { + "school_day": 97, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1636, + "fields": { + "school_day": 97, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1637, + "fields": { + "school_day": 97, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1638, + "fields": { + "school_day": 97, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1639, + "fields": { + "school_day": 97, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1640, + "fields": { + "school_day": 97, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1641, + "fields": { + "school_day": 97, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1642, + "fields": { + "school_day": 97, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1643, + "fields": { + "school_day": 97, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1644, + "fields": { + "school_day": 97, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1645, + "fields": { + "school_day": 97, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1646, + "fields": { + "school_day": 97, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1647, + "fields": { + "school_day": 97, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1648, + "fields": { + "school_day": 97, + "student": 11, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1649, + "fields": { + "school_day": 97, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1657, + "fields": { + "school_day": 98, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1658, + "fields": { + "school_day": 98, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1659, + "fields": { + "school_day": 98, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1660, + "fields": { + "school_day": 98, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1661, + "fields": { + "school_day": 98, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1662, + "fields": { + "school_day": 98, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1663, + "fields": { + "school_day": 98, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1664, + "fields": { + "school_day": 98, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1665, + "fields": { + "school_day": 98, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1666, + "fields": { + "school_day": 98, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1667, + "fields": { + "school_day": 98, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1668, + "fields": { + "school_day": 98, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1669, + "fields": { + "school_day": 98, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1670, + "fields": { + "school_day": 98, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1671, + "fields": { + "school_day": 98, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1679, + "fields": { + "school_day": 99, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1680, + "fields": { + "school_day": 99, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1681, + "fields": { + "school_day": 99, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1682, + "fields": { + "school_day": 99, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1683, + "fields": { + "school_day": 99, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1684, + "fields": { + "school_day": 99, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1685, + "fields": { + "school_day": 99, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1686, + "fields": { + "school_day": 99, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1687, + "fields": { + "school_day": 99, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1688, + "fields": { + "school_day": 99, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1689, + "fields": { + "school_day": 99, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1690, + "fields": { + "school_day": 99, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1691, + "fields": { + "school_day": 99, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1692, + "fields": { + "school_day": 99, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1693, + "fields": { + "school_day": 99, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1701, + "fields": { + "school_day": 100, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1702, + "fields": { + "school_day": 100, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1703, + "fields": { + "school_day": 100, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1704, + "fields": { + "school_day": 100, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1705, + "fields": { + "school_day": 100, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1706, + "fields": { + "school_day": 100, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1707, + "fields": { + "school_day": 100, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1708, + "fields": { + "school_day": 100, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1709, + "fields": { + "school_day": 100, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1710, + "fields": { + "school_day": 100, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1711, + "fields": { + "school_day": 100, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1712, + "fields": { + "school_day": 100, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1713, + "fields": { + "school_day": 100, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1714, + "fields": { + "school_day": 100, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1715, + "fields": { + "school_day": 100, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1723, + "fields": { + "school_day": 101, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1724, + "fields": { + "school_day": 101, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1725, + "fields": { + "school_day": 101, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1726, + "fields": { + "school_day": 101, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1727, + "fields": { + "school_day": 101, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1728, + "fields": { + "school_day": 101, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1729, + "fields": { + "school_day": 101, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1730, + "fields": { + "school_day": 101, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1731, + "fields": { + "school_day": 101, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1732, + "fields": { + "school_day": 101, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1733, + "fields": { + "school_day": 101, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1734, + "fields": { + "school_day": 101, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1735, + "fields": { + "school_day": 101, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1736, + "fields": { + "school_day": 101, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1737, + "fields": { + "school_day": 101, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1745, + "fields": { + "school_day": 102, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1746, + "fields": { + "school_day": 102, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1747, + "fields": { + "school_day": 102, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1748, + "fields": { + "school_day": 102, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1749, + "fields": { + "school_day": 102, + "student": 12, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1750, + "fields": { + "school_day": 102, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1751, + "fields": { + "school_day": 102, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1752, + "fields": { + "school_day": 102, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1753, + "fields": { + "school_day": 102, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1754, + "fields": { + "school_day": 102, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1755, + "fields": { + "school_day": 102, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1756, + "fields": { + "school_day": 102, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1757, + "fields": { + "school_day": 102, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1758, + "fields": { + "school_day": 102, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1759, + "fields": { + "school_day": 102, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1767, + "fields": { + "school_day": 103, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1768, + "fields": { + "school_day": 103, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1769, + "fields": { + "school_day": 103, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1770, + "fields": { + "school_day": 103, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1771, + "fields": { + "school_day": 103, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1772, + "fields": { + "school_day": 103, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1773, + "fields": { + "school_day": 103, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1774, + "fields": { + "school_day": 103, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1775, + "fields": { + "school_day": 103, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1776, + "fields": { + "school_day": 103, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1777, + "fields": { + "school_day": 103, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1778, + "fields": { + "school_day": 103, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1779, + "fields": { + "school_day": 103, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1780, + "fields": { + "school_day": 103, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1781, + "fields": { + "school_day": 103, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1789, + "fields": { + "school_day": 104, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1790, + "fields": { + "school_day": 104, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1791, + "fields": { + "school_day": 104, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1792, + "fields": { + "school_day": 104, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1793, + "fields": { + "school_day": 104, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1794, + "fields": { + "school_day": 104, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1795, + "fields": { + "school_day": 104, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1796, + "fields": { + "school_day": 104, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1797, + "fields": { + "school_day": 104, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1798, + "fields": { + "school_day": 104, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1799, + "fields": { + "school_day": 104, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1800, + "fields": { + "school_day": 104, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1801, + "fields": { + "school_day": 104, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1802, + "fields": { + "school_day": 104, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1803, + "fields": { + "school_day": 104, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1811, + "fields": { + "school_day": 105, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1812, + "fields": { + "school_day": 105, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1813, + "fields": { + "school_day": 105, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1814, + "fields": { + "school_day": 105, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1815, + "fields": { + "school_day": 105, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1816, + "fields": { + "school_day": 105, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1817, + "fields": { + "school_day": 105, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1818, + "fields": { + "school_day": 105, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1819, + "fields": { + "school_day": 105, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1820, + "fields": { + "school_day": 105, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1821, + "fields": { + "school_day": 105, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1822, + "fields": { + "school_day": 105, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1823, + "fields": { + "school_day": 105, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1824, + "fields": { + "school_day": 105, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1825, + "fields": { + "school_day": 105, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1833, + "fields": { + "school_day": 106, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1834, + "fields": { + "school_day": 106, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1835, + "fields": { + "school_day": 106, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1836, + "fields": { + "school_day": 106, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1837, + "fields": { + "school_day": 106, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1838, + "fields": { + "school_day": 106, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1839, + "fields": { + "school_day": 106, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1840, + "fields": { + "school_day": 106, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1841, + "fields": { + "school_day": 106, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1842, + "fields": { + "school_day": 106, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1843, + "fields": { + "school_day": 106, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1844, + "fields": { + "school_day": 106, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1845, + "fields": { + "school_day": 106, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1846, + "fields": { + "school_day": 106, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1847, + "fields": { + "school_day": 106, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1855, + "fields": { + "school_day": 107, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1856, + "fields": { + "school_day": 107, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1857, + "fields": { + "school_day": 107, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1858, + "fields": { + "school_day": 107, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1859, + "fields": { + "school_day": 107, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1860, + "fields": { + "school_day": 107, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1861, + "fields": { + "school_day": 107, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1862, + "fields": { + "school_day": 107, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1863, + "fields": { + "school_day": 107, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1864, + "fields": { + "school_day": 107, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1865, + "fields": { + "school_day": 107, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1866, + "fields": { + "school_day": 107, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1867, + "fields": { + "school_day": 107, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1868, + "fields": { + "school_day": 107, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1869, + "fields": { + "school_day": 107, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1877, + "fields": { + "school_day": 108, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1878, + "fields": { + "school_day": 108, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1879, + "fields": { + "school_day": 108, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1880, + "fields": { + "school_day": 108, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1881, + "fields": { + "school_day": 108, + "student": 12, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1882, + "fields": { + "school_day": 108, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1883, + "fields": { + "school_day": 108, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1884, + "fields": { + "school_day": 108, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1885, + "fields": { + "school_day": 108, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1886, + "fields": { + "school_day": 108, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1887, + "fields": { + "school_day": 108, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1888, + "fields": { + "school_day": 108, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1889, + "fields": { + "school_day": 108, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1890, + "fields": { + "school_day": 108, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1891, + "fields": { + "school_day": 108, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1899, + "fields": { + "school_day": 109, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1900, + "fields": { + "school_day": 109, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1901, + "fields": { + "school_day": 109, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1902, + "fields": { + "school_day": 109, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1903, + "fields": { + "school_day": 109, + "student": 12, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1904, + "fields": { + "school_day": 109, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1905, + "fields": { + "school_day": 109, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1906, + "fields": { + "school_day": 109, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1907, + "fields": { + "school_day": 109, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1908, + "fields": { + "school_day": 109, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1909, + "fields": { + "school_day": 109, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1910, + "fields": { + "school_day": 109, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1911, + "fields": { + "school_day": 109, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1912, + "fields": { + "school_day": 109, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1913, + "fields": { + "school_day": 109, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1921, + "fields": { + "school_day": 110, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1922, + "fields": { + "school_day": 110, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1923, + "fields": { + "school_day": 110, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1924, + "fields": { + "school_day": 110, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1925, + "fields": { + "school_day": 110, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1926, + "fields": { + "school_day": 110, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1927, + "fields": { + "school_day": 110, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1928, + "fields": { + "school_day": 110, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1929, + "fields": { + "school_day": 110, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1930, + "fields": { + "school_day": 110, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1931, + "fields": { + "school_day": 110, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1932, + "fields": { + "school_day": 110, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1933, + "fields": { + "school_day": 110, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1934, + "fields": { + "school_day": 110, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1935, + "fields": { + "school_day": 110, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1943, + "fields": { + "school_day": 111, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1944, + "fields": { + "school_day": 111, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1945, + "fields": { + "school_day": 111, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1946, + "fields": { + "school_day": 111, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1947, + "fields": { + "school_day": 111, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1948, + "fields": { + "school_day": 111, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1949, + "fields": { + "school_day": 111, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1950, + "fields": { + "school_day": 111, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1951, + "fields": { + "school_day": 111, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1952, + "fields": { + "school_day": 111, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1953, + "fields": { + "school_day": 111, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1954, + "fields": { + "school_day": 111, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1955, + "fields": { + "school_day": 111, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1956, + "fields": { + "school_day": 111, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1957, + "fields": { + "school_day": 111, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1965, + "fields": { + "school_day": 112, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1966, + "fields": { + "school_day": 112, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1967, + "fields": { + "school_day": 112, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1968, + "fields": { + "school_day": 112, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1969, + "fields": { + "school_day": 112, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1970, + "fields": { + "school_day": 112, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1971, + "fields": { + "school_day": 112, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1972, + "fields": { + "school_day": 112, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1973, + "fields": { + "school_day": 112, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1974, + "fields": { + "school_day": 112, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1975, + "fields": { + "school_day": 112, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1976, + "fields": { + "school_day": 112, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1977, + "fields": { + "school_day": 112, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1978, + "fields": { + "school_day": 112, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1979, + "fields": { + "school_day": 112, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1980, + "fields": { + "school_day": 113, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1981, + "fields": { + "school_day": 113, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1982, + "fields": { + "school_day": 113, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1983, + "fields": { + "school_day": 113, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1984, + "fields": { + "school_day": 113, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1985, + "fields": { + "school_day": 113, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1986, + "fields": { + "school_day": 113, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1987, + "fields": { + "school_day": 113, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1988, + "fields": { + "school_day": 113, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1989, + "fields": { + "school_day": 113, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1990, + "fields": { + "school_day": 113, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1991, + "fields": { + "school_day": 113, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1992, + "fields": { + "school_day": 113, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1993, + "fields": { + "school_day": 113, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1994, + "fields": { + "school_day": 113, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1995, + "fields": { + "school_day": 114, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1996, + "fields": { + "school_day": 114, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1997, + "fields": { + "school_day": 114, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1998, + "fields": { + "school_day": 114, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 1999, + "fields": { + "school_day": 114, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2000, + "fields": { + "school_day": 114, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2001, + "fields": { + "school_day": 114, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2002, + "fields": { + "school_day": 114, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2003, + "fields": { + "school_day": 114, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2004, + "fields": { + "school_day": 114, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2005, + "fields": { + "school_day": 114, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2006, + "fields": { + "school_day": 114, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2007, + "fields": { + "school_day": 114, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2008, + "fields": { + "school_day": 114, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2009, + "fields": { + "school_day": 114, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2010, + "fields": { + "school_day": 115, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2011, + "fields": { + "school_day": 115, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2012, + "fields": { + "school_day": 115, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2013, + "fields": { + "school_day": 115, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2014, + "fields": { + "school_day": 115, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2015, + "fields": { + "school_day": 115, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2016, + "fields": { + "school_day": 115, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2017, + "fields": { + "school_day": 115, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2018, + "fields": { + "school_day": 115, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2019, + "fields": { + "school_day": 115, + "student": 6, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2020, + "fields": { + "school_day": 115, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2021, + "fields": { + "school_day": 115, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2022, + "fields": { + "school_day": 115, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2023, + "fields": { + "school_day": 115, + "student": 11, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2024, + "fields": { + "school_day": 115, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2025, + "fields": { + "school_day": 116, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2026, + "fields": { + "school_day": 116, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2027, + "fields": { + "school_day": 116, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2028, + "fields": { + "school_day": 116, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2029, + "fields": { + "school_day": 116, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2030, + "fields": { + "school_day": 116, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2031, + "fields": { + "school_day": 116, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2032, + "fields": { + "school_day": 116, + "student": 9, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2033, + "fields": { + "school_day": 116, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2034, + "fields": { + "school_day": 116, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2035, + "fields": { + "school_day": 116, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2036, + "fields": { + "school_day": 116, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2037, + "fields": { + "school_day": 116, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2038, + "fields": { + "school_day": 116, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2039, + "fields": { + "school_day": 116, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2040, + "fields": { + "school_day": 117, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2041, + "fields": { + "school_day": 117, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2042, + "fields": { + "school_day": 117, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2043, + "fields": { + "school_day": 117, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2044, + "fields": { + "school_day": 117, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2045, + "fields": { + "school_day": 117, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2046, + "fields": { + "school_day": 117, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2047, + "fields": { + "school_day": 117, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2048, + "fields": { + "school_day": 117, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2049, + "fields": { + "school_day": 117, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2050, + "fields": { + "school_day": 117, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2051, + "fields": { + "school_day": 117, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2052, + "fields": { + "school_day": 117, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2053, + "fields": { + "school_day": 117, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2054, + "fields": { + "school_day": 117, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2055, + "fields": { + "school_day": 118, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2056, + "fields": { + "school_day": 118, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2057, + "fields": { + "school_day": 118, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2058, + "fields": { + "school_day": 118, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2059, + "fields": { + "school_day": 118, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2060, + "fields": { + "school_day": 118, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2061, + "fields": { + "school_day": 118, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2062, + "fields": { + "school_day": 118, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2063, + "fields": { + "school_day": 118, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2064, + "fields": { + "school_day": 118, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2065, + "fields": { + "school_day": 118, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2066, + "fields": { + "school_day": 118, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2067, + "fields": { + "school_day": 118, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2068, + "fields": { + "school_day": 118, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2069, + "fields": { + "school_day": 118, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2070, + "fields": { + "school_day": 119, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2071, + "fields": { + "school_day": 119, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2072, + "fields": { + "school_day": 119, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2073, + "fields": { + "school_day": 119, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2074, + "fields": { + "school_day": 119, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2075, + "fields": { + "school_day": 119, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2076, + "fields": { + "school_day": 119, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2077, + "fields": { + "school_day": 119, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2078, + "fields": { + "school_day": 119, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2079, + "fields": { + "school_day": 119, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2080, + "fields": { + "school_day": 119, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2081, + "fields": { + "school_day": 119, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2082, + "fields": { + "school_day": 119, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2083, + "fields": { + "school_day": 119, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2084, + "fields": { + "school_day": 119, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2085, + "fields": { + "school_day": 120, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2086, + "fields": { + "school_day": 120, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2087, + "fields": { + "school_day": 120, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2088, + "fields": { + "school_day": 120, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2089, + "fields": { + "school_day": 120, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2090, + "fields": { + "school_day": 120, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2091, + "fields": { + "school_day": 120, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2092, + "fields": { + "school_day": 120, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2093, + "fields": { + "school_day": 120, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2094, + "fields": { + "school_day": 120, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2095, + "fields": { + "school_day": 120, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2096, + "fields": { + "school_day": 120, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2097, + "fields": { + "school_day": 120, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2098, + "fields": { + "school_day": 120, + "student": 11, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2099, + "fields": { + "school_day": 120, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2100, + "fields": { + "school_day": 121, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2101, + "fields": { + "school_day": 121, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2102, + "fields": { + "school_day": 121, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2103, + "fields": { + "school_day": 121, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2104, + "fields": { + "school_day": 121, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2105, + "fields": { + "school_day": 121, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2106, + "fields": { + "school_day": 121, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2107, + "fields": { + "school_day": 121, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2108, + "fields": { + "school_day": 121, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2109, + "fields": { + "school_day": 121, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2110, + "fields": { + "school_day": 121, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2111, + "fields": { + "school_day": 121, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2112, + "fields": { + "school_day": 121, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2113, + "fields": { + "school_day": 121, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2114, + "fields": { + "school_day": 121, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2115, + "fields": { + "school_day": 122, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2116, + "fields": { + "school_day": 122, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2117, + "fields": { + "school_day": 122, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2118, + "fields": { + "school_day": 122, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2119, + "fields": { + "school_day": 122, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2120, + "fields": { + "school_day": 122, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2121, + "fields": { + "school_day": 122, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2122, + "fields": { + "school_day": 122, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2123, + "fields": { + "school_day": 122, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2124, + "fields": { + "school_day": 122, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2125, + "fields": { + "school_day": 122, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2126, + "fields": { + "school_day": 122, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2127, + "fields": { + "school_day": 122, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2128, + "fields": { + "school_day": 122, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2129, + "fields": { + "school_day": 122, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2130, + "fields": { + "school_day": 123, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2131, + "fields": { + "school_day": 123, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2132, + "fields": { + "school_day": 123, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2133, + "fields": { + "school_day": 123, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2134, + "fields": { + "school_day": 123, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2135, + "fields": { + "school_day": 123, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2136, + "fields": { + "school_day": 123, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2137, + "fields": { + "school_day": 123, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2138, + "fields": { + "school_day": 123, + "student": 18, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2139, + "fields": { + "school_day": 123, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2140, + "fields": { + "school_day": 123, + "student": 19, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2141, + "fields": { + "school_day": 123, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2142, + "fields": { + "school_day": 123, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2143, + "fields": { + "school_day": 123, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2144, + "fields": { + "school_day": 123, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2145, + "fields": { + "school_day": 124, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2146, + "fields": { + "school_day": 124, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2147, + "fields": { + "school_day": 124, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2148, + "fields": { + "school_day": 124, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2149, + "fields": { + "school_day": 124, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2150, + "fields": { + "school_day": 124, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2151, + "fields": { + "school_day": 124, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2152, + "fields": { + "school_day": 124, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2153, + "fields": { + "school_day": 124, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2154, + "fields": { + "school_day": 124, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2155, + "fields": { + "school_day": 124, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2156, + "fields": { + "school_day": 124, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2157, + "fields": { + "school_day": 124, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2158, + "fields": { + "school_day": 124, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2159, + "fields": { + "school_day": 124, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2160, + "fields": { + "school_day": 125, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2161, + "fields": { + "school_day": 125, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2162, + "fields": { + "school_day": 125, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2163, + "fields": { + "school_day": 125, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2164, + "fields": { + "school_day": 125, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2165, + "fields": { + "school_day": 125, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2166, + "fields": { + "school_day": 125, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2167, + "fields": { + "school_day": 125, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2168, + "fields": { + "school_day": 125, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2169, + "fields": { + "school_day": 125, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2170, + "fields": { + "school_day": 125, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2171, + "fields": { + "school_day": 125, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2172, + "fields": { + "school_day": 125, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2173, + "fields": { + "school_day": 125, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2174, + "fields": { + "school_day": 125, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2175, + "fields": { + "school_day": 126, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2176, + "fields": { + "school_day": 126, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2177, + "fields": { + "school_day": 126, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2178, + "fields": { + "school_day": 126, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2179, + "fields": { + "school_day": 126, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2180, + "fields": { + "school_day": 126, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2181, + "fields": { + "school_day": 126, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2182, + "fields": { + "school_day": 126, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2183, + "fields": { + "school_day": 126, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2184, + "fields": { + "school_day": 126, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2185, + "fields": { + "school_day": 126, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2186, + "fields": { + "school_day": 126, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2187, + "fields": { + "school_day": 126, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2188, + "fields": { + "school_day": 126, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2189, + "fields": { + "school_day": 126, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2190, + "fields": { + "school_day": 127, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2191, + "fields": { + "school_day": 127, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2192, + "fields": { + "school_day": 127, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2193, + "fields": { + "school_day": 127, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2194, + "fields": { + "school_day": 127, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2195, + "fields": { + "school_day": 127, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2196, + "fields": { + "school_day": 127, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2197, + "fields": { + "school_day": 127, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2198, + "fields": { + "school_day": 127, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2199, + "fields": { + "school_day": 127, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2200, + "fields": { + "school_day": 127, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2201, + "fields": { + "school_day": 127, + "student": 15, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2202, + "fields": { + "school_day": 127, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2203, + "fields": { + "school_day": 127, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2204, + "fields": { + "school_day": 127, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2205, + "fields": { + "school_day": 128, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2206, + "fields": { + "school_day": 128, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2207, + "fields": { + "school_day": 128, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2208, + "fields": { + "school_day": 128, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2209, + "fields": { + "school_day": 128, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2210, + "fields": { + "school_day": 128, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2211, + "fields": { + "school_day": 128, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2212, + "fields": { + "school_day": 128, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2213, + "fields": { + "school_day": 128, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2214, + "fields": { + "school_day": 128, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2215, + "fields": { + "school_day": 128, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2216, + "fields": { + "school_day": 128, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2217, + "fields": { + "school_day": 128, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2218, + "fields": { + "school_day": 128, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2219, + "fields": { + "school_day": 128, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2220, + "fields": { + "school_day": 129, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2221, + "fields": { + "school_day": 129, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2222, + "fields": { + "school_day": 129, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2223, + "fields": { + "school_day": 129, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2224, + "fields": { + "school_day": 129, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2225, + "fields": { + "school_day": 129, + "student": 14, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2226, + "fields": { + "school_day": 129, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2227, + "fields": { + "school_day": 129, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2228, + "fields": { + "school_day": 129, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2229, + "fields": { + "school_day": 129, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2230, + "fields": { + "school_day": 129, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2231, + "fields": { + "school_day": 129, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2232, + "fields": { + "school_day": 129, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2233, + "fields": { + "school_day": 129, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2234, + "fields": { + "school_day": 129, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2235, + "fields": { + "school_day": 130, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2236, + "fields": { + "school_day": 130, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2237, + "fields": { + "school_day": 130, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2238, + "fields": { + "school_day": 130, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2239, + "fields": { + "school_day": 130, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2240, + "fields": { + "school_day": 130, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2241, + "fields": { + "school_day": 130, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2242, + "fields": { + "school_day": 130, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2243, + "fields": { + "school_day": 130, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2244, + "fields": { + "school_day": 130, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2245, + "fields": { + "school_day": 130, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2246, + "fields": { + "school_day": 130, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2247, + "fields": { + "school_day": 130, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2248, + "fields": { + "school_day": 130, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2249, + "fields": { + "school_day": 130, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2250, + "fields": { + "school_day": 131, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2251, + "fields": { + "school_day": 131, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2252, + "fields": { + "school_day": 131, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2253, + "fields": { + "school_day": 131, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2254, + "fields": { + "school_day": 131, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2255, + "fields": { + "school_day": 131, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2256, + "fields": { + "school_day": 131, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2257, + "fields": { + "school_day": 131, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2258, + "fields": { + "school_day": 131, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2259, + "fields": { + "school_day": 131, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2260, + "fields": { + "school_day": 131, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2261, + "fields": { + "school_day": 131, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2262, + "fields": { + "school_day": 131, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2263, + "fields": { + "school_day": 131, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2264, + "fields": { + "school_day": 131, + "student": 16, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2265, + "fields": { + "school_day": 132, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2266, + "fields": { + "school_day": 132, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2267, + "fields": { + "school_day": 132, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2268, + "fields": { + "school_day": 132, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2269, + "fields": { + "school_day": 132, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2270, + "fields": { + "school_day": 132, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2271, + "fields": { + "school_day": 132, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2272, + "fields": { + "school_day": 132, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2273, + "fields": { + "school_day": 132, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2274, + "fields": { + "school_day": 132, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2275, + "fields": { + "school_day": 132, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2276, + "fields": { + "school_day": 132, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2277, + "fields": { + "school_day": 132, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2278, + "fields": { + "school_day": 132, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2279, + "fields": { + "school_day": 132, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2280, + "fields": { + "school_day": 133, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2281, + "fields": { + "school_day": 133, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2282, + "fields": { + "school_day": 133, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2283, + "fields": { + "school_day": 133, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2284, + "fields": { + "school_day": 133, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2285, + "fields": { + "school_day": 133, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2286, + "fields": { + "school_day": 133, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2287, + "fields": { + "school_day": 133, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2288, + "fields": { + "school_day": 133, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2289, + "fields": { + "school_day": 133, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2290, + "fields": { + "school_day": 133, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2291, + "fields": { + "school_day": 133, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2292, + "fields": { + "school_day": 133, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2293, + "fields": { + "school_day": 133, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2294, + "fields": { + "school_day": 133, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2295, + "fields": { + "school_day": 134, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2296, + "fields": { + "school_day": 134, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2297, + "fields": { + "school_day": 134, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2298, + "fields": { + "school_day": 134, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2299, + "fields": { + "school_day": 134, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2300, + "fields": { + "school_day": 134, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2301, + "fields": { + "school_day": 134, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2302, + "fields": { + "school_day": 134, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2303, + "fields": { + "school_day": 134, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2304, + "fields": { + "school_day": 134, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2305, + "fields": { + "school_day": 134, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2306, + "fields": { + "school_day": 134, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2307, + "fields": { + "school_day": 134, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2308, + "fields": { + "school_day": 134, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2309, + "fields": { + "school_day": 134, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2310, + "fields": { + "school_day": 135, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2311, + "fields": { + "school_day": 135, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2312, + "fields": { + "school_day": 135, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2313, + "fields": { + "school_day": 135, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2314, + "fields": { + "school_day": 135, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2315, + "fields": { + "school_day": 135, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2316, + "fields": { + "school_day": 135, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2317, + "fields": { + "school_day": 135, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2318, + "fields": { + "school_day": 135, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2319, + "fields": { + "school_day": 135, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2320, + "fields": { + "school_day": 135, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2321, + "fields": { + "school_day": 135, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2322, + "fields": { + "school_day": 135, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2323, + "fields": { + "school_day": 135, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2324, + "fields": { + "school_day": 135, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2325, + "fields": { + "school_day": 136, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2326, + "fields": { + "school_day": 136, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2327, + "fields": { + "school_day": 136, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2328, + "fields": { + "school_day": 136, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2329, + "fields": { + "school_day": 136, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2330, + "fields": { + "school_day": 136, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2331, + "fields": { + "school_day": 136, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2332, + "fields": { + "school_day": 136, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2333, + "fields": { + "school_day": 136, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2334, + "fields": { + "school_day": 136, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2335, + "fields": { + "school_day": 136, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2336, + "fields": { + "school_day": 136, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2337, + "fields": { + "school_day": 136, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2338, + "fields": { + "school_day": 136, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2339, + "fields": { + "school_day": 136, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2340, + "fields": { + "school_day": 137, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2341, + "fields": { + "school_day": 137, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2342, + "fields": { + "school_day": 137, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2343, + "fields": { + "school_day": 137, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2344, + "fields": { + "school_day": 137, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2345, + "fields": { + "school_day": 137, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2346, + "fields": { + "school_day": 137, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2347, + "fields": { + "school_day": 137, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2348, + "fields": { + "school_day": 137, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2349, + "fields": { + "school_day": 137, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2350, + "fields": { + "school_day": 137, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2351, + "fields": { + "school_day": 137, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2352, + "fields": { + "school_day": 137, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2353, + "fields": { + "school_day": 137, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2354, + "fields": { + "school_day": 137, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2355, + "fields": { + "school_day": 138, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2356, + "fields": { + "school_day": 138, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2357, + "fields": { + "school_day": 138, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2358, + "fields": { + "school_day": 138, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2359, + "fields": { + "school_day": 138, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2360, + "fields": { + "school_day": 138, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2361, + "fields": { + "school_day": 138, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2362, + "fields": { + "school_day": 138, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2363, + "fields": { + "school_day": 138, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2364, + "fields": { + "school_day": 138, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2365, + "fields": { + "school_day": 138, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2366, + "fields": { + "school_day": 138, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2367, + "fields": { + "school_day": 138, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2368, + "fields": { + "school_day": 138, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2369, + "fields": { + "school_day": 138, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2370, + "fields": { + "school_day": 139, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2371, + "fields": { + "school_day": 139, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2372, + "fields": { + "school_day": 139, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2373, + "fields": { + "school_day": 139, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2374, + "fields": { + "school_day": 139, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2375, + "fields": { + "school_day": 139, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2376, + "fields": { + "school_day": 139, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2377, + "fields": { + "school_day": 139, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2378, + "fields": { + "school_day": 139, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2379, + "fields": { + "school_day": 139, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2380, + "fields": { + "school_day": 139, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2381, + "fields": { + "school_day": 139, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2382, + "fields": { + "school_day": 139, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2383, + "fields": { + "school_day": 139, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2384, + "fields": { + "school_day": 139, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2385, + "fields": { + "school_day": 140, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2386, + "fields": { + "school_day": 140, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2387, + "fields": { + "school_day": 140, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2388, + "fields": { + "school_day": 140, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2389, + "fields": { + "school_day": 140, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2390, + "fields": { + "school_day": 140, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2391, + "fields": { + "school_day": 140, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2392, + "fields": { + "school_day": 140, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2393, + "fields": { + "school_day": 140, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2394, + "fields": { + "school_day": 140, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2395, + "fields": { + "school_day": 140, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2396, + "fields": { + "school_day": 140, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2397, + "fields": { + "school_day": 140, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2398, + "fields": { + "school_day": 140, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2399, + "fields": { + "school_day": 140, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2400, + "fields": { + "school_day": 141, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2401, + "fields": { + "school_day": 141, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2402, + "fields": { + "school_day": 141, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2403, + "fields": { + "school_day": 141, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2404, + "fields": { + "school_day": 141, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2405, + "fields": { + "school_day": 141, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2406, + "fields": { + "school_day": 141, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2407, + "fields": { + "school_day": 141, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2408, + "fields": { + "school_day": 141, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2409, + "fields": { + "school_day": 141, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2410, + "fields": { + "school_day": 141, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2411, + "fields": { + "school_day": 141, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2412, + "fields": { + "school_day": 141, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2413, + "fields": { + "school_day": 141, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2414, + "fields": { + "school_day": 141, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2415, + "fields": { + "school_day": 142, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2416, + "fields": { + "school_day": 142, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2417, + "fields": { + "school_day": 142, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2418, + "fields": { + "school_day": 142, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2419, + "fields": { + "school_day": 142, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2420, + "fields": { + "school_day": 142, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2421, + "fields": { + "school_day": 142, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2422, + "fields": { + "school_day": 142, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2423, + "fields": { + "school_day": 142, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2424, + "fields": { + "school_day": 142, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2425, + "fields": { + "school_day": 142, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2426, + "fields": { + "school_day": 142, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2427, + "fields": { + "school_day": 142, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2428, + "fields": { + "school_day": 142, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2429, + "fields": { + "school_day": 142, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2430, + "fields": { + "school_day": 143, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2431, + "fields": { + "school_day": 143, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2432, + "fields": { + "school_day": 143, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2433, + "fields": { + "school_day": 143, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2434, + "fields": { + "school_day": 143, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2435, + "fields": { + "school_day": 143, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2436, + "fields": { + "school_day": 143, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2437, + "fields": { + "school_day": 143, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2438, + "fields": { + "school_day": 143, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2439, + "fields": { + "school_day": 143, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2440, + "fields": { + "school_day": 143, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2441, + "fields": { + "school_day": 143, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2442, + "fields": { + "school_day": 143, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2443, + "fields": { + "school_day": 143, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2444, + "fields": { + "school_day": 143, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2445, + "fields": { + "school_day": 144, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2446, + "fields": { + "school_day": 144, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2447, + "fields": { + "school_day": 144, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2448, + "fields": { + "school_day": 144, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2449, + "fields": { + "school_day": 144, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2450, + "fields": { + "school_day": 144, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2451, + "fields": { + "school_day": 144, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2452, + "fields": { + "school_day": 144, + "student": 9, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2453, + "fields": { + "school_day": 144, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2454, + "fields": { + "school_day": 144, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2455, + "fields": { + "school_day": 144, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2456, + "fields": { + "school_day": 144, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2457, + "fields": { + "school_day": 144, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2458, + "fields": { + "school_day": 144, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2459, + "fields": { + "school_day": 144, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2460, + "fields": { + "school_day": 145, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2461, + "fields": { + "school_day": 145, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2462, + "fields": { + "school_day": 145, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2463, + "fields": { + "school_day": 145, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2464, + "fields": { + "school_day": 145, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2465, + "fields": { + "school_day": 145, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2466, + "fields": { + "school_day": 145, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2467, + "fields": { + "school_day": 145, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2468, + "fields": { + "school_day": 145, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2469, + "fields": { + "school_day": 145, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2470, + "fields": { + "school_day": 145, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2471, + "fields": { + "school_day": 145, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2472, + "fields": { + "school_day": 145, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2473, + "fields": { + "school_day": 145, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2474, + "fields": { + "school_day": 145, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2475, + "fields": { + "school_day": 146, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2476, + "fields": { + "school_day": 146, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2477, + "fields": { + "school_day": 146, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2478, + "fields": { + "school_day": 146, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2479, + "fields": { + "school_day": 146, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2480, + "fields": { + "school_day": 146, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2481, + "fields": { + "school_day": 146, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2482, + "fields": { + "school_day": 146, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2483, + "fields": { + "school_day": 146, + "student": 18, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2484, + "fields": { + "school_day": 146, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2485, + "fields": { + "school_day": 146, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2486, + "fields": { + "school_day": 146, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2487, + "fields": { + "school_day": 146, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2488, + "fields": { + "school_day": 146, + "student": 11, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2489, + "fields": { + "school_day": 146, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2490, + "fields": { + "school_day": 147, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2491, + "fields": { + "school_day": 147, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2492, + "fields": { + "school_day": 147, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2493, + "fields": { + "school_day": 147, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2494, + "fields": { + "school_day": 147, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2495, + "fields": { + "school_day": 147, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2496, + "fields": { + "school_day": 147, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2497, + "fields": { + "school_day": 147, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2498, + "fields": { + "school_day": 147, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2499, + "fields": { + "school_day": 147, + "student": 6, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2500, + "fields": { + "school_day": 147, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2501, + "fields": { + "school_day": 147, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2502, + "fields": { + "school_day": 147, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2503, + "fields": { + "school_day": 147, + "student": 11, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2504, + "fields": { + "school_day": 147, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2505, + "fields": { + "school_day": 148, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2506, + "fields": { + "school_day": 148, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2507, + "fields": { + "school_day": 148, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2508, + "fields": { + "school_day": 148, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2509, + "fields": { + "school_day": 148, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2510, + "fields": { + "school_day": 148, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2511, + "fields": { + "school_day": 148, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2512, + "fields": { + "school_day": 148, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2513, + "fields": { + "school_day": 148, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2514, + "fields": { + "school_day": 148, + "student": 6, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2515, + "fields": { + "school_day": 148, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2516, + "fields": { + "school_day": 148, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2517, + "fields": { + "school_day": 148, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2518, + "fields": { + "school_day": 148, + "student": 11, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2519, + "fields": { + "school_day": 148, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2520, + "fields": { + "school_day": 149, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2521, + "fields": { + "school_day": 149, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2522, + "fields": { + "school_day": 149, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2523, + "fields": { + "school_day": 149, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2524, + "fields": { + "school_day": 149, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2525, + "fields": { + "school_day": 149, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2526, + "fields": { + "school_day": 149, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2527, + "fields": { + "school_day": 149, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2528, + "fields": { + "school_day": 149, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2529, + "fields": { + "school_day": 149, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2530, + "fields": { + "school_day": 149, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2531, + "fields": { + "school_day": 149, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2532, + "fields": { + "school_day": 149, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2533, + "fields": { + "school_day": 149, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2534, + "fields": { + "school_day": 149, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2535, + "fields": { + "school_day": 150, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2536, + "fields": { + "school_day": 150, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2537, + "fields": { + "school_day": 150, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2538, + "fields": { + "school_day": 150, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2539, + "fields": { + "school_day": 150, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2540, + "fields": { + "school_day": 150, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2541, + "fields": { + "school_day": 150, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2542, + "fields": { + "school_day": 150, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2543, + "fields": { + "school_day": 150, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2544, + "fields": { + "school_day": 150, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2545, + "fields": { + "school_day": 150, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2546, + "fields": { + "school_day": 150, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2547, + "fields": { + "school_day": 150, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2548, + "fields": { + "school_day": 150, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2549, + "fields": { + "school_day": 150, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2550, + "fields": { + "school_day": 151, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2551, + "fields": { + "school_day": 151, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2552, + "fields": { + "school_day": 151, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2553, + "fields": { + "school_day": 151, + "student": 17, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2554, + "fields": { + "school_day": 151, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2555, + "fields": { + "school_day": 151, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2556, + "fields": { + "school_day": 151, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2557, + "fields": { + "school_day": 151, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2558, + "fields": { + "school_day": 151, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2559, + "fields": { + "school_day": 151, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2560, + "fields": { + "school_day": 151, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2561, + "fields": { + "school_day": 151, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2562, + "fields": { + "school_day": 151, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2563, + "fields": { + "school_day": 151, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2564, + "fields": { + "school_day": 151, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2565, + "fields": { + "school_day": 152, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2566, + "fields": { + "school_day": 152, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2567, + "fields": { + "school_day": 152, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2568, + "fields": { + "school_day": 152, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2569, + "fields": { + "school_day": 152, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2570, + "fields": { + "school_day": 152, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2571, + "fields": { + "school_day": 152, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2572, + "fields": { + "school_day": 152, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2573, + "fields": { + "school_day": 152, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2574, + "fields": { + "school_day": 152, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2575, + "fields": { + "school_day": 152, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2576, + "fields": { + "school_day": 152, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2577, + "fields": { + "school_day": 152, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2578, + "fields": { + "school_day": 152, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2579, + "fields": { + "school_day": 152, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2580, + "fields": { + "school_day": 153, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2581, + "fields": { + "school_day": 153, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2582, + "fields": { + "school_day": 153, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2583, + "fields": { + "school_day": 153, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2584, + "fields": { + "school_day": 153, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2585, + "fields": { + "school_day": 153, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2586, + "fields": { + "school_day": 153, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2587, + "fields": { + "school_day": 153, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2588, + "fields": { + "school_day": 153, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2589, + "fields": { + "school_day": 153, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2590, + "fields": { + "school_day": 153, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2591, + "fields": { + "school_day": 153, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2592, + "fields": { + "school_day": 153, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2593, + "fields": { + "school_day": 153, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2594, + "fields": { + "school_day": 153, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2595, + "fields": { + "school_day": 154, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2596, + "fields": { + "school_day": 154, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2597, + "fields": { + "school_day": 154, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2598, + "fields": { + "school_day": 154, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2599, + "fields": { + "school_day": 154, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2600, + "fields": { + "school_day": 154, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2601, + "fields": { + "school_day": 154, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2602, + "fields": { + "school_day": 154, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2603, + "fields": { + "school_day": 154, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2604, + "fields": { + "school_day": 154, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2605, + "fields": { + "school_day": 154, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2606, + "fields": { + "school_day": 154, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2607, + "fields": { + "school_day": 154, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2608, + "fields": { + "school_day": 154, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2609, + "fields": { + "school_day": 154, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2610, + "fields": { + "school_day": 155, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2611, + "fields": { + "school_day": 155, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2612, + "fields": { + "school_day": 155, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2613, + "fields": { + "school_day": 155, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2614, + "fields": { + "school_day": 155, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2615, + "fields": { + "school_day": 155, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2616, + "fields": { + "school_day": 155, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2617, + "fields": { + "school_day": 155, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2618, + "fields": { + "school_day": 155, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2619, + "fields": { + "school_day": 155, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2620, + "fields": { + "school_day": 155, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2621, + "fields": { + "school_day": 155, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2622, + "fields": { + "school_day": 155, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2623, + "fields": { + "school_day": 155, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2624, + "fields": { + "school_day": 155, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2625, + "fields": { + "school_day": 156, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2626, + "fields": { + "school_day": 156, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2627, + "fields": { + "school_day": 156, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2628, + "fields": { + "school_day": 156, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2629, + "fields": { + "school_day": 156, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2630, + "fields": { + "school_day": 156, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2631, + "fields": { + "school_day": 156, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2632, + "fields": { + "school_day": 156, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2633, + "fields": { + "school_day": 156, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2634, + "fields": { + "school_day": 156, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2635, + "fields": { + "school_day": 156, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2636, + "fields": { + "school_day": 156, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2637, + "fields": { + "school_day": 156, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2638, + "fields": { + "school_day": 156, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2639, + "fields": { + "school_day": 156, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2640, + "fields": { + "school_day": 157, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2641, + "fields": { + "school_day": 157, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2642, + "fields": { + "school_day": 157, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2643, + "fields": { + "school_day": 157, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2644, + "fields": { + "school_day": 157, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2645, + "fields": { + "school_day": 157, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2646, + "fields": { + "school_day": 157, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2647, + "fields": { + "school_day": 157, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2648, + "fields": { + "school_day": 157, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2649, + "fields": { + "school_day": 157, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2650, + "fields": { + "school_day": 157, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2651, + "fields": { + "school_day": 157, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2652, + "fields": { + "school_day": 157, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2653, + "fields": { + "school_day": 157, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2654, + "fields": { + "school_day": 157, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2655, + "fields": { + "school_day": 158, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2656, + "fields": { + "school_day": 158, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2657, + "fields": { + "school_day": 158, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2658, + "fields": { + "school_day": 158, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2659, + "fields": { + "school_day": 158, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2660, + "fields": { + "school_day": 158, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2661, + "fields": { + "school_day": 158, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2662, + "fields": { + "school_day": 158, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2663, + "fields": { + "school_day": 158, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2664, + "fields": { + "school_day": 158, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2665, + "fields": { + "school_day": 158, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2666, + "fields": { + "school_day": 158, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2667, + "fields": { + "school_day": 158, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2668, + "fields": { + "school_day": 158, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2669, + "fields": { + "school_day": 158, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2670, + "fields": { + "school_day": 159, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2671, + "fields": { + "school_day": 159, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2672, + "fields": { + "school_day": 159, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2673, + "fields": { + "school_day": 159, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2674, + "fields": { + "school_day": 159, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2675, + "fields": { + "school_day": 159, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2676, + "fields": { + "school_day": 159, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2677, + "fields": { + "school_day": 159, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2678, + "fields": { + "school_day": 159, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2679, + "fields": { + "school_day": 159, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2680, + "fields": { + "school_day": 159, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2681, + "fields": { + "school_day": 159, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2682, + "fields": { + "school_day": 159, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2683, + "fields": { + "school_day": 159, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2684, + "fields": { + "school_day": 159, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2685, + "fields": { + "school_day": 160, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2686, + "fields": { + "school_day": 160, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2687, + "fields": { + "school_day": 160, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2688, + "fields": { + "school_day": 160, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2689, + "fields": { + "school_day": 160, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2690, + "fields": { + "school_day": 160, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2691, + "fields": { + "school_day": 160, + "student": 5, + "status": "T", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2692, + "fields": { + "school_day": 160, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2693, + "fields": { + "school_day": 160, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2694, + "fields": { + "school_day": 160, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2695, + "fields": { + "school_day": 160, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2696, + "fields": { + "school_day": 160, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2697, + "fields": { + "school_day": 160, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2698, + "fields": { + "school_day": 160, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2699, + "fields": { + "school_day": 160, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2700, + "fields": { + "school_day": 161, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2701, + "fields": { + "school_day": 161, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2702, + "fields": { + "school_day": 161, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2703, + "fields": { + "school_day": 161, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2704, + "fields": { + "school_day": 161, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2705, + "fields": { + "school_day": 161, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2706, + "fields": { + "school_day": 161, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2707, + "fields": { + "school_day": 161, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2708, + "fields": { + "school_day": 161, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2709, + "fields": { + "school_day": 161, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2710, + "fields": { + "school_day": 161, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2711, + "fields": { + "school_day": 161, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2712, + "fields": { + "school_day": 161, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2713, + "fields": { + "school_day": 161, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2714, + "fields": { + "school_day": 161, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2715, + "fields": { + "school_day": 162, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2716, + "fields": { + "school_day": 162, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2717, + "fields": { + "school_day": 162, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2718, + "fields": { + "school_day": 162, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2719, + "fields": { + "school_day": 162, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2720, + "fields": { + "school_day": 162, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2721, + "fields": { + "school_day": 162, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2722, + "fields": { + "school_day": 162, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2723, + "fields": { + "school_day": 162, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2724, + "fields": { + "school_day": 162, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2725, + "fields": { + "school_day": 162, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2726, + "fields": { + "school_day": 162, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2727, + "fields": { + "school_day": 162, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2728, + "fields": { + "school_day": 162, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2729, + "fields": { + "school_day": 162, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2730, + "fields": { + "school_day": 163, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2731, + "fields": { + "school_day": 163, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2732, + "fields": { + "school_day": 163, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2733, + "fields": { + "school_day": 163, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2734, + "fields": { + "school_day": 163, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2735, + "fields": { + "school_day": 163, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2736, + "fields": { + "school_day": 163, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2737, + "fields": { + "school_day": 163, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2738, + "fields": { + "school_day": 163, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2739, + "fields": { + "school_day": 163, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2740, + "fields": { + "school_day": 163, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2741, + "fields": { + "school_day": 163, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2742, + "fields": { + "school_day": 163, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2743, + "fields": { + "school_day": 163, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2744, + "fields": { + "school_day": 163, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2745, + "fields": { + "school_day": 164, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2746, + "fields": { + "school_day": 164, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2747, + "fields": { + "school_day": 164, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2748, + "fields": { + "school_day": 164, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2749, + "fields": { + "school_day": 164, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2750, + "fields": { + "school_day": 164, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2751, + "fields": { + "school_day": 164, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2752, + "fields": { + "school_day": 164, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2753, + "fields": { + "school_day": 164, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2754, + "fields": { + "school_day": 164, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2755, + "fields": { + "school_day": 164, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2756, + "fields": { + "school_day": 164, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2757, + "fields": { + "school_day": 164, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2758, + "fields": { + "school_day": 164, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2759, + "fields": { + "school_day": 164, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2760, + "fields": { + "school_day": 165, + "student": 3, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2761, + "fields": { + "school_day": 165, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2762, + "fields": { + "school_day": 165, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2763, + "fields": { + "school_day": 165, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2764, + "fields": { + "school_day": 165, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2765, + "fields": { + "school_day": 165, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2766, + "fields": { + "school_day": 165, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2767, + "fields": { + "school_day": 165, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2768, + "fields": { + "school_day": 165, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2769, + "fields": { + "school_day": 165, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2770, + "fields": { + "school_day": 165, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2771, + "fields": { + "school_day": 165, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2772, + "fields": { + "school_day": 165, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2773, + "fields": { + "school_day": 165, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2774, + "fields": { + "school_day": 165, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2775, + "fields": { + "school_day": 166, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2776, + "fields": { + "school_day": 166, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2777, + "fields": { + "school_day": 166, + "student": 13, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2778, + "fields": { + "school_day": 166, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2779, + "fields": { + "school_day": 166, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2780, + "fields": { + "school_day": 166, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2781, + "fields": { + "school_day": 166, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2782, + "fields": { + "school_day": 166, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2783, + "fields": { + "school_day": 166, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2784, + "fields": { + "school_day": 166, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2785, + "fields": { + "school_day": 166, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2786, + "fields": { + "school_day": 166, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2787, + "fields": { + "school_day": 166, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2788, + "fields": { + "school_day": 166, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2789, + "fields": { + "school_day": 166, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2790, + "fields": { + "school_day": 167, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2791, + "fields": { + "school_day": 167, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2792, + "fields": { + "school_day": 167, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2793, + "fields": { + "school_day": 167, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2794, + "fields": { + "school_day": 167, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2795, + "fields": { + "school_day": 167, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2796, + "fields": { + "school_day": 167, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2797, + "fields": { + "school_day": 167, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2798, + "fields": { + "school_day": 167, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2799, + "fields": { + "school_day": 167, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2800, + "fields": { + "school_day": 167, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2801, + "fields": { + "school_day": 167, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2802, + "fields": { + "school_day": 167, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2803, + "fields": { + "school_day": 167, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2804, + "fields": { + "school_day": 167, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2805, + "fields": { + "school_day": 168, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2806, + "fields": { + "school_day": 168, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2807, + "fields": { + "school_day": 168, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2808, + "fields": { + "school_day": 168, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2809, + "fields": { + "school_day": 168, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2810, + "fields": { + "school_day": 168, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2811, + "fields": { + "school_day": 168, + "student": 5, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2812, + "fields": { + "school_day": 168, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2813, + "fields": { + "school_day": 168, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2814, + "fields": { + "school_day": 168, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2815, + "fields": { + "school_day": 168, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2816, + "fields": { + "school_day": 168, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2817, + "fields": { + "school_day": 168, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2818, + "fields": { + "school_day": 168, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2819, + "fields": { + "school_day": 168, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2820, + "fields": { + "school_day": 169, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2821, + "fields": { + "school_day": 169, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2822, + "fields": { + "school_day": 169, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2823, + "fields": { + "school_day": 169, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2824, + "fields": { + "school_day": 169, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2825, + "fields": { + "school_day": 169, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2826, + "fields": { + "school_day": 169, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2827, + "fields": { + "school_day": 169, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2828, + "fields": { + "school_day": 169, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2829, + "fields": { + "school_day": 169, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2830, + "fields": { + "school_day": 169, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2831, + "fields": { + "school_day": 169, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2832, + "fields": { + "school_day": 169, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2833, + "fields": { + "school_day": 169, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2834, + "fields": { + "school_day": 169, + "student": 16, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2835, + "fields": { + "school_day": 170, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2836, + "fields": { + "school_day": 170, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2837, + "fields": { + "school_day": 170, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2838, + "fields": { + "school_day": 170, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2839, + "fields": { + "school_day": 170, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2840, + "fields": { + "school_day": 170, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2841, + "fields": { + "school_day": 170, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2842, + "fields": { + "school_day": 170, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2843, + "fields": { + "school_day": 170, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2844, + "fields": { + "school_day": 170, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2845, + "fields": { + "school_day": 170, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2846, + "fields": { + "school_day": 170, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2847, + "fields": { + "school_day": 170, + "student": 7, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2848, + "fields": { + "school_day": 170, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2849, + "fields": { + "school_day": 170, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2850, + "fields": { + "school_day": 171, + "student": 3, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2851, + "fields": { + "school_day": 171, + "student": 4, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2852, + "fields": { + "school_day": 171, + "student": 13, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2853, + "fields": { + "school_day": 171, + "student": 17, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2854, + "fields": { + "school_day": 171, + "student": 12, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2855, + "fields": { + "school_day": 171, + "student": 14, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2856, + "fields": { + "school_day": 171, + "student": 5, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2857, + "fields": { + "school_day": 171, + "student": 9, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2858, + "fields": { + "school_day": 171, + "student": 18, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2859, + "fields": { + "school_day": 171, + "student": 6, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2860, + "fields": { + "school_day": 171, + "student": 19, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2861, + "fields": { + "school_day": 171, + "student": 15, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2862, + "fields": { + "school_day": 171, + "student": 7, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2863, + "fields": { + "school_day": 171, + "student": 11, + "status": "P", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}, { + "model": "core.attendanceentry", + "pk": 2864, + "fields": { + "school_day": 171, + "student": 16, + "status": "A", + "created_at": "2022-07-27T16:15:01.256Z", + "updated_at": "2022-07-27T16:15:01.256Z" + } +}] diff --git a/src/gradebook/__init__.py b/src/gradebook/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/gradebook/admin.py b/src/gradebook/admin.py deleted file mode 100644 index 8b2132d..0000000 --- a/src/gradebook/admin.py +++ /dev/null @@ -1,12 +0,0 @@ -from django.contrib import admin -from .models import ( - Tag, - Subject, - Component, - Score, -) - -admin.site.register(Tag) -admin.site.register(Subject) -admin.site.register(Component) -admin.site.register(Score) diff --git a/src/gradebook/apps.py b/src/gradebook/apps.py deleted file mode 100644 index 02e5114..0000000 --- a/src/gradebook/apps.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.apps import AppConfig - - -class GradebookConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'gradebook' diff --git a/src/gradebook/forms.py b/src/gradebook/forms.py deleted file mode 100644 index 80928c8..0000000 --- a/src/gradebook/forms.py +++ /dev/null @@ -1,43 +0,0 @@ -from django import forms -from .models import Component, Score, Tag - -from students.models import Student - -class ComponentForm(forms.ModelForm): - class Meta: - model = Component - fields = ( - 'name', - 'category', - 'due_date', - 'grade_total', - ) - widgets = { - 'due_date': forms.DateInput(attrs = { - 'type': 'date' - }), - } - -class ComponentUpdateForm(forms.ModelForm): - class Meta: - model = Component - fields = ( - 'subject', - 'name', - 'category', - 'due_date', - 'grade_total', - 'tags', - ) - widgets = { - 'due_date': forms.DateInput(attrs = { - 'type': 'date' - }), - } - -class TagForm(forms.ModelForm): - class Meta: - model = Tag - fields = ( - 'name', - ) \ No newline at end of file diff --git a/src/gradebook/migrations/0001_initial.py b/src/gradebook/migrations/0001_initial.py deleted file mode 100644 index 1be9dec..0000000 --- a/src/gradebook/migrations/0001_initial.py +++ /dev/null @@ -1,69 +0,0 @@ -# Generated by Django 3.2.7 on 2021-09-01 15:26 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ('students', '0001_initial'), - ] - - operations = [ - migrations.CreateModel( - name='Component', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=50)), - ('category', models.CharField(choices=[('QZ', 'Quiz'), ('AS', 'Assignment'), ('TS', 'Test')], default='AS', max_length=2)), - ('due_date', models.DateField()), - ('grade_total', models.PositiveIntegerField()), - ], - options={ - 'ordering': ['due_date'], - }, - ), - migrations.CreateModel( - name='Subject', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=250)), - ('description', models.CharField(blank=True, max_length=250)), - ], - options={ - 'ordering': ['name'], - }, - ), - migrations.CreateModel( - name='Tag', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=50)), - ], - ), - migrations.CreateModel( - name='Score', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('value', models.PositiveIntegerField()), - ('component', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='gradebook.component')), - ('student', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='students.student')), - ], - options={ - 'ordering': ('student',), - }, - ), - migrations.AddField( - model_name='component', - name='subject', - field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='gradebook.subject'), - ), - migrations.AddField( - model_name='component', - name='tags', - field=models.ManyToManyField(blank=True, to='gradebook.Tag'), - ), - ] diff --git a/src/gradebook/migrations/0002_component_finished_grading.py b/src/gradebook/migrations/0002_component_finished_grading.py deleted file mode 100644 index d0ee74f..0000000 --- a/src/gradebook/migrations/0002_component_finished_grading.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.2.7 on 2021-09-16 23:21 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('gradebook', '0001_initial'), - ] - - operations = [ - migrations.AddField( - model_name='component', - name='finished_grading', - field=models.BooleanField(default=False), - ), - ] diff --git a/src/gradebook/migrations/__init__.py b/src/gradebook/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/gradebook/models.py b/src/gradebook/models.py deleted file mode 100644 index 30eb050..0000000 --- a/src/gradebook/models.py +++ /dev/null @@ -1,100 +0,0 @@ -from datetime import datetime, date -from django.db import models -from django.urls import reverse - -from django.db.models import Count, Sum, Avg, F, Value -from django.db.models.functions import Length, Upper - -from students.models import Student - -class Tag(models.Model): - name = models.CharField(max_length=50) - - def __str__(self): - return self.name - - def get_absolute_url(self): - return reverse('tag-detail', kwargs={'pk': self.pk}) - - -class Subject(models.Model): - class Meta: - ordering = ['name'] - - name = models.CharField(max_length=250) - description = models.CharField(max_length=250, blank=True) - - def __str__(self): - return self.name - - def get_absolute_url(self): - return reverse('subject-detail', kwargs={'pk': self.pk}) - - -class Component(models.Model): - class Meta: - ordering = ['due_date'] - - CATEGORY_CHOICES = [ - ('QZ', 'Quiz'), - ('AS', 'Assignment'), - ('TS', 'Test'), - ] - - subject = models.ForeignKey(Subject, on_delete=models.CASCADE) - name = models.CharField(max_length=50) - category = models.CharField( - max_length = 2, - choices = CATEGORY_CHOICES, - default='AS', - ) - due_date = models.DateField() - grade_total = models.PositiveIntegerField() - tags = models.ManyToManyField(Tag, blank=True) - finished_grading = models.BooleanField(default=False) - - @property - def is_due(self): - if self.due_date < date.today(): - return True - else: - return False - - @property - def grade_avg(self): - avg = Score.objects.filter(component=self.pk).aggregate( - Avg('value') - ) - if avg['value__avg'] is not None: - return round(avg['value__avg'], 2) - else: - return "No scores yet." - - def __str__(self): - return self.name - - def get_absolute_url(self): - return reverse('component-detail', kwargs={'pk': self.pk}) - - -class Score(models.Model): - class Meta: - ordering = ('student',) - - component = models.ForeignKey(Component, on_delete=models.CASCADE) - student = models.ForeignKey(Student, on_delete=models.CASCADE) - value = models.PositiveIntegerField() - - @property - def grade(self): - return f"{self.value} / {self.component.grade_total}" - - @property - def grade_as_percentage(self): - return round(self.value / self.component.grade_total * 100, 2) - - def __str__(self): - return f"{self.student} scored: {self.value} / {self.component.grade_total}" - - def get_absolute_url(self): - return reverse('score-detail', kwargs={'pk': self.pk}) diff --git a/src/gradebook/templates/gradebook/component_confirm_delete.html b/src/gradebook/templates/gradebook/component_confirm_delete.html deleted file mode 100644 index 1754832..0000000 --- a/src/gradebook/templates/gradebook/component_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{component}}

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/component_create_form.html b/src/gradebook/templates/gradebook/component_create_form.html deleted file mode 100644 index 0efac64..0000000 --- a/src/gradebook/templates/gradebook/component_create_form.html +++ /dev/null @@ -1,17 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        {{subject}}

        -

        Create Component

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/component_detail.html b/src/gradebook/templates/gradebook/component_detail.html deleted file mode 100644 index 72e2888..0000000 --- a/src/gradebook/templates/gradebook/component_detail.html +++ /dev/null @@ -1,77 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -
        -

        {{component.name}}

        - Update Component -
        - {% if component.finished_grading %} -
        -

        - ✓ Graded -

        -
        - {% endif %} - {% if component.tags.count > 0 %} -
        - - {% for tag in component.tags.all %} - {{tag.name}} - {% endfor %} - -
        - {% endif %} -
        -
        -
        Due Date
        -
        {{component.due_date}}
        -
        Description
        -
        {{component.name}}
        -
        Category
        -
        {{component.get_category_display}}
        -
        Grade Total
        -
        {{component.grade_total}}
        -
        -
        -
        -

        Scores

        -

        - Bulk Edit Scores -

        - - - - - - - - - {% for score in component.score_set.all %} - - - - - - {% endfor %} - - - - - -
        StudentScore
        {{score.student.student_id}} — {{score.student}}{{score.value}}Edit score
        Avg Score{{component.grade_avg_pre|floatformat:2}}
        - - {% if scoreless %} -
        - -

        Scoreless

        -
          - {% for student in scoreless %} -
        • {{student}}
        • - {% endfor %} -
        -
        - {% endif %} -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/component_form.html b/src/gradebook/templates/gradebook/component_form.html deleted file mode 100644 index 582da01..0000000 --- a/src/gradebook/templates/gradebook/component_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/component_manager.html b/src/gradebook/templates/gradebook/component_manager.html deleted file mode 100644 index f37acfd..0000000 --- a/src/gradebook/templates/gradebook/component_manager.html +++ /dev/null @@ -1,41 +0,0 @@ -{% extends "base.html" %} -{% load gradebook_filters %} - -{% block content %} -
        -

        {{component}}, {{component.subject}}

        -
        -
        - {% csrf_token %} -

        Enter Scores

        - - - - - - - - - - {% if formset.errors %} - - {% endif %} - - - - {% for student in student_list %} - - - - - {% endfor %} - -
        Out of:{{component.grade_total}}
        StudentScoreErrors
        {{student.full_name}}
        - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/score_confirm_delete.html b/src/gradebook/templates/gradebook/score_confirm_delete.html deleted file mode 100644 index 252d0b6..0000000 --- a/src/gradebook/templates/gradebook/score_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{score}}

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/score_create_form.html b/src/gradebook/templates/gradebook/score_create_form.html deleted file mode 100644 index 688e005..0000000 --- a/src/gradebook/templates/gradebook/score_create_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Create Score

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/score_form.html b/src/gradebook/templates/gradebook/score_form.html deleted file mode 100644 index b1a3a01..0000000 --- a/src/gradebook/templates/gradebook/score_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Update Score

        -

        {{score.component.subject}}— {{score.component.get_category_display}}: {{score.component}}

        -
        -
        - {% csrf_token %} - -

        {{score.student}}

        - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/search_results.html b/src/gradebook/templates/gradebook/search_results.html deleted file mode 100644 index 8c3de8e..0000000 --- a/src/gradebook/templates/gradebook/search_results.html +++ /dev/null @@ -1,83 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Search Results

        - {% if student_list.count > 0 %} -
        -

        Students

        -
          - {% for student in student_list %} -
        • - {{student.student_id}} — {{student.full_name}} - {% if student.sit %} - SIT: {{student.get_sit_display}} - {% endif %} - {% if student.iep_behavioral %} - IEP behavioral - {% endif %} - {% if student.iep_math %} - IEP math - {% endif %} - {% if student.iep_ela %} - IEP ELA - {% endif %} - {% if student.parent__count > 0 %} -
          Parents: - {% for parent in student.parent_set.all %} - {{parent.full_name}}{% if not forloop.last %},{% endif %} - {% endfor %} - {% endif %} -
        • - {% endfor %} -
        -
        - {% endif %} - {% if component_list.count > 0 %} -
        -

        Components

        -
          -
        • - Subject - Component - Due Date - Tags -
        • -
          - {% for component in component_list %} -
        • - {{component.subject}} - {{component}} - {{component.due_date}} - - {% for tag in component.tags.all %} - {{tag.name}} - {% endfor %} - -
        • - {% empty %} -

          No components by that name were found.

          - {% endfor %} -
        -
        - {% endif %} - {% if message_list.count > 0 %} -
        -

        Messages

        -
          - {% for message in message_list %} -
        • -

          - {{message.thread.subject}}
          - {{message.content|truncatewords:25}}
          - Read more → -

          -
        • - {% empty %} -

          No components by that name were found.

          - {% endfor %} -
        -
        - {% endif %} -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/subject_confirm_delete.html b/src/gradebook/templates/gradebook/subject_confirm_delete.html deleted file mode 100644 index d7fc822..0000000 --- a/src/gradebook/templates/gradebook/subject_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{subject}} Subject

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/subject_create_form.html b/src/gradebook/templates/gradebook/subject_create_form.html deleted file mode 100644 index 1ca81c3..0000000 --- a/src/gradebook/templates/gradebook/subject_create_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Create Subject

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/subject_detail.html b/src/gradebook/templates/gradebook/subject_detail.html deleted file mode 100644 index 09f11bf..0000000 --- a/src/gradebook/templates/gradebook/subject_detail.html +++ /dev/null @@ -1,41 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -
        -

        {{subject.name}}

        - Update subject details -
        - {% if subject.description %} - {{subject.description}} - {% endif %} -
        -

        Syllabus

        -

        - + New component -

        - - - - - - - - - - - - {% for component in subject.component_set.all %} - - - - - - - - {% endfor %} - -
        Due DateDescriptionCategoryGrade TotalAvg Score
        {{component.due_date}}{{component.name}}{{component.get_category_display}}{{component.grade_total}}{{component.grade_avg_pre|floatformat:2}}
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/subject_form.html b/src/gradebook/templates/gradebook/subject_form.html deleted file mode 100644 index 8003f89..0000000 --- a/src/gradebook/templates/gradebook/subject_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/subject_list.html b/src/gradebook/templates/gradebook/subject_list.html deleted file mode 100644 index 64ace4a..0000000 --- a/src/gradebook/templates/gradebook/subject_list.html +++ /dev/null @@ -1,35 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -
        -

        Curricula

        -
        -
        -

        Subjects

        -

        - + New subject -

        - {% for subject in subject_list %} -
        -

        {{subject.name}}

        - {% if subject.description %} -

        {{subject.description}}

        - {% endif %} -
        - {% endfor %} -
        -
        -

        Tags

        -

        + New tag

        -

        - {% for tag in tag_list %} - - {{tag.name}} - {{tag.component__count}} - - {% endfor %} -

        -
        -
        -{% endblock %} diff --git a/src/gradebook/templates/gradebook/tag_confirm_delete.html b/src/gradebook/templates/gradebook/tag_confirm_delete.html deleted file mode 100644 index c6d8033..0000000 --- a/src/gradebook/templates/gradebook/tag_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{tag}}

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/tag_create_form.html b/src/gradebook/templates/gradebook/tag_create_form.html deleted file mode 100644 index e325178..0000000 --- a/src/gradebook/templates/gradebook/tag_create_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Create Tag

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/tag_detail.html b/src/gradebook/templates/gradebook/tag_detail.html deleted file mode 100644 index 0cde70c..0000000 --- a/src/gradebook/templates/gradebook/tag_detail.html +++ /dev/null @@ -1,35 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -
        -

        {{tag.name}}

        - Update tag details -
        -
        -

        Components with this tag

        - - - - - - - - - - - - {% for component in tag.component_set.all %} - - - - - - - - {% endfor %} - -
        Due DateDescriptionCategoryGrade TotalAvg Score
        {{component.due_date}}{{component.subject}}: {{component.name}}{{component.get_category_display}}{{component.grade_total}}{{component.grade_avg_pre|floatformat:2}}
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/tag_form.html b/src/gradebook/templates/gradebook/tag_form.html deleted file mode 100644 index 8c30362..0000000 --- a/src/gradebook/templates/gradebook/tag_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Update Tag

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templates/gradebook/tag_list.html b/src/gradebook/templates/gradebook/tag_list.html deleted file mode 100644 index 99fab71..0000000 --- a/src/gradebook/templates/gradebook/tag_list.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Tags

        -

        - + New tag -

        -
        -
          - {% for tag in tag_list %} -
        • - {{tag.name}} - {{tag.component__count}} -
        • - {% endfor %} -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/gradebook/templatetags/__init__.py b/src/gradebook/templatetags/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/gradebook/templatetags/gradebook_filters.py b/src/gradebook/templatetags/gradebook_filters.py deleted file mode 100644 index 3c02455..0000000 --- a/src/gradebook/templatetags/gradebook_filters.py +++ /dev/null @@ -1,14 +0,0 @@ -from django import template - -register = template.Library() - -@register.filter(name='grade_as_percentage') -def grade_as_percentage(numerator, denominator): - return round(numerator / denominator * 100, 2) - -@register.filter(name='keyvalue') -def keyvalue(dict, key): - try: - return dict[key-1] - except KeyError: - return '' diff --git a/src/gradebook/tests.py b/src/gradebook/tests.py deleted file mode 100644 index 7ce503c..0000000 --- a/src/gradebook/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/src/gradebook/urls.py b/src/gradebook/urls.py deleted file mode 100644 index 4d5cf68..0000000 --- a/src/gradebook/urls.py +++ /dev/null @@ -1,40 +0,0 @@ -from django.urls import path, include -from . import views - -urlpatterns = [ - path('search/', views.SearchResultsView.as_view(), name='search-results'), - path('subjects/', views.SubjectListView.as_view(), name='subject-list'), - path('subjects/new/', views.SubjectCreateView.as_view(), name='subject-create'), - path('subjects//', include([ - path('', views.SubjectDetailView.as_view(), name='subject-detail'), - path('update/', views.SubjectUpdateView.as_view(), name='subject-update'), - path('delete/', views.SubjectDeleteView.as_view(), name='subject-delete'), - - - path('components/', views.ComponentListView.as_view(), name='component-list'), - path('components/new/', views.ComponentCreateView.as_view(), name='component-create'), - path('components//', include([ - path('', views.ComponentDetailView.as_view(), name='component-detail'), - path('update/', views.ComponentUpdateView.as_view(), name='component-update'), - path('manager/', views.ComponentManagerView.as_view(), name='component-manager'), - path('delete/', views.ComponentDeleteView.as_view(), name='component-delete'), - ])), - ])), - - - path('scores/', views.ScoreListView.as_view(), name='score-list'), - path('scores/new/', views.ScoreCreateView.as_view(), name='score-create'), - path('scores//', include([ - path('', views.ScoreDetailView.as_view(), name='score-detail'), - path('update/', views.ScoreUpdateView.as_view(), name='score-update'), - path('delete/', views.ScoreDeleteView.as_view(), name='score-delete'), - ])), - - path('tags/', views.TagListView.as_view(), name='tag-list'), - path('tags/new/', views.TagCreateView.as_view(), name='tag-create'), - path('tags//', include([ - path('', views.TagDetailView.as_view(), name='tag-detail'), - path('update/', views.TagUpdateView.as_view(), name='tag-update'), - path('delete/', views.TagDeleteView.as_view(), name='tag-delete'), - ])), -] diff --git a/src/gradebook/views.py b/src/gradebook/views.py deleted file mode 100644 index a569bbe..0000000 --- a/src/gradebook/views.py +++ /dev/null @@ -1,297 +0,0 @@ -from django.shortcuts import render -from django.urls import reverse_lazy, reverse -from django.views.generic.base import TemplateView -from django.views.generic.edit import FormView, CreateView, UpdateView, DeleteView -from django.views.generic.detail import DetailView -from django.views.generic.list import ListView -from django.contrib.auth.mixins import LoginRequiredMixin -from django.forms.models import inlineformset_factory -from django import forms - -from django.db.models import ( Exists, OuterRef, - Prefetch, Subquery, Count, Sum, Avg, F, Q, Value) -from django.db.models.functions import Length, Upper - -from students.models import Student, Thread, Message - -from .models import ( - Tag, - Subject, - Component, - Score, -) - -from .forms import ComponentForm, ComponentUpdateForm - - -# UPLOAD CSV -# import pandas as pd - -# csv_data = pd.read_csv('file.csv', sep=';') - -# products = [ -# Product( -# name = csv_data.ix[row]['Name'], -# description = csv_data.ix[row]['Description'], -# price = csv_data.ix[row]['price'], -# ) -# for row in csv_data['ID'] -# ] - -# Product.objects.bulk_create(products) - - -# if form.is_valid(): -# csv_file = form.cleaned_data['csv_file'] - - - -class SearchResultsView(ListView): - model = Component - template_name = 'gradebook/search_results.html' - - def get_queryset(self): - query = self.request.GET.get('q') - object_list = Component.objects.filter( - Q(name__icontains=query) | Q(tags__name__icontains=query) - ).prefetch_related( - Prefetch( - 'score_set', - queryset=Score.objects.select_related('student') - ), - 'tags' - ).annotate( - grade_avg_pre=Avg('score__value') - ).order_by('subject') - return object_list - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - query = self.request.GET.get('q') - context['student_list'] = Student.objects.filter( - Q(first_name__icontains=query) | Q(last_name__icontains=query) | Q(student_id__icontains=query) - ) - context['message_list'] = Message.objects.filter( - Q(content__icontains=query) - ) - context['query'] = query - return context - - -# SUBJECTS -class SubjectListView(LoginRequiredMixin, ListView): - model = Subject - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context['tag_list'] = Tag.objects.annotate(Count('component')) - return context - -class SubjectCreateView(LoginRequiredMixin, CreateView): - model = Subject - template_name_suffix = '_create_form' - fields = ('__all__') - -class SubjectDetailView(LoginRequiredMixin, DetailView): - model = Subject - - def get_object(self): - queryset = Subject.objects.filter( - pk=self.kwargs.get(self.pk_url_kwarg) - ).prefetch_related( - Prefetch('component_set', queryset=Component.objects.prefetch_related( - 'score_set' - ).annotate( - grade_avg_pre=Avg('score__value') - )) - ) - obj = queryset.get() - return obj - - -class SubjectUpdateView(LoginRequiredMixin, UpdateView): - model = Subject - fields = ('__all__') - - def get_success_url(self): - pk = self.kwargs["pk"] - return reverse('subject-detail', kwargs={'pk': pk}) - -class SubjectDeleteView(LoginRequiredMixin, DeleteView): - model = Subject - success_url = reverse_lazy('subject-list') - - -# COMPONENTS -class ComponentListView(LoginRequiredMixin, ListView): - model = Component - pk_url_kwarg = 'comp_pk' - -class ComponentCreateView(LoginRequiredMixin, CreateView): - model = Component - form_class = ComponentForm - template_name_suffix = '_create_form' - pk_url_kwarg = 'comp_pk' - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context['subject'] = Subject.objects.get(pk=self.kwargs['pk']) - return context - - def form_valid(self, form): - form.instance.subject = Subject.objects.get(pk=self.kwargs['pk']) - return super().form_valid(form) - - def get_success_url(self): - return reverse('component-detail', kwargs={'pk': self.kwargs['pk'], 'comp_pk': self.object.pk}) - -class ComponentDetailView(LoginRequiredMixin, DetailView): - model = Component - pk_url_kwarg = 'comp_pk' - - def get_object(self): - queryset = Component.objects.filter( - pk=self.kwargs.get(self.pk_url_kwarg) - ).prefetch_related( - Prefetch( - 'score_set', - queryset=Score.objects.select_related('student') - ), - 'tags' - ).annotate( - grade_avg_pre=Avg('score__value') - ) - obj = queryset.get() - return obj - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - cscores = Score.objects.filter( - component=self.object, - student=OuterRef('pk') - ) - context['scoreless'] = Student.objects.exclude( - score__in=cscores - ) - return context - -class ComponentUpdateView(LoginRequiredMixin, UpdateView): - model = Component - form_class = ComponentUpdateForm - pk_url_kwarg = 'comp_pk' - - def get_success_url(self): - return reverse('subject-detail', kwargs={'pk': self.object.subject.pk}) - -class ComponentManagerView(LoginRequiredMixin, UpdateView): - model = Component - fields = ('finished_grading',) - pk_url_kwarg = 'comp_pk' - template_name_suffix = '_manager' - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - cscores = Score.objects.filter( - component=self.object, - student=OuterRef('pk') - ) - context['student_list'] = Student.objects.annotate( - cscore=Subquery(cscores.values('value')), - cscore_pk=Subquery(cscores.values('pk')) - ) - return context - - def get_success_url(self): - return reverse('component-detail', kwargs={'pk': self.object.subject.pk, 'comp_pk': self.object.pk}) - - def form_valid(self, form): - form.save() - for key, value in self.request.POST.items(): - if 'student' in key and value: - s_pk = key.split('_')[1] - obj, created = Score.objects.update_or_create( - component=self.object, - student=Student.objects.get(pk=s_pk), - defaults={'value': value} - ) - return super().form_valid(form) - -class ComponentDeleteView(LoginRequiredMixin, DeleteView): - model = Component - pk_url_kwarg = 'comp_pk' - - def get_success_url(self): - return reverse('subject-detail', kwargs={'pk': self.kwargs['pk']}) - - -# SCORES -class ScoreListView(LoginRequiredMixin, ListView): - model = Score - -class ScoreCreateView(LoginRequiredMixin, CreateView): - model = Score - template_name_suffix = '_create_form' - fields = ('__all__') - - def get_success_url(self): - return reverse('component-detail', kwargs={'pk': self.object.component.pk}) - -class ScoreDetailView(LoginRequiredMixin, DetailView): - model = Score - -class ScoreUpdateView(LoginRequiredMixin, UpdateView): - model = Score - fields = ['value'] - - def get_success_url(self): - return reverse('component-detail', kwargs={'pk': self.object.component.subject.pk, 'comp_pk': self.object.component.pk}) - -class ScoreDeleteView(LoginRequiredMixin, DeleteView): - model = Score - - def get_success_url(self): - return reverse('component-detail', kwargs={'pk': self.object.component.subject.pk, 'comp_pk': self.object.component.pk}) - - - -# TAGS -class TagListView(LoginRequiredMixin, ListView): - model = Tag - - def get_queryset(self): - object_list = Tag.objects.annotate(Count('component')) - return object_list - -class TagCreateView(LoginRequiredMixin, CreateView): - model = Tag - template_name_suffix = '_create_form' - fields = ('__all__') - -class TagDetailView(LoginRequiredMixin, DetailView): - model = Tag - - def get_object(self): - queryset = Tag.objects.filter( - pk=self.kwargs.get(self.pk_url_kwarg) - ).prefetch_related( - Prefetch('component_set', queryset=Component.objects.prefetch_related( - 'score_set' - ).annotate( - grade_avg_pre=Avg('score__value') - )) - ) - obj = queryset.get() - return obj - - -class TagUpdateView(LoginRequiredMixin, UpdateView): - model = Tag - fields = ('__all__') - - def get_success_url(self): - pk = self.kwargs["pk"] - return reverse('tag-detail', kwargs={'pk': pk}) - -class TagDeleteView(LoginRequiredMixin, DeleteView): - model = Tag - success_url = reverse_lazy('tag-list') diff --git a/src/indici/middleware.py b/src/indici/middleware.py index 3a01cd2..a64cb54 100644 --- a/src/indici/middleware.py +++ b/src/indici/middleware.py @@ -1,4 +1,5 @@ import zoneinfo +from urllib import parse from django.utils import timezone diff --git a/src/indici/settings.py b/src/indici/settings.py index 3b7ea10..fb74c2a 100644 --- a/src/indici/settings.py +++ b/src/indici/settings.py @@ -34,9 +34,6 @@ INSTALLED_APPS = [ # Local 'accounts.apps.AccountsConfig', 'core.apps.CoreConfig', - 'students.apps.StudentsConfig', - 'gradebook.apps.GradebookConfig', - 'attendance.apps.AttendanceConfig', ] # Middlewares @@ -65,6 +62,7 @@ TEMPLATES = [ 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', + 'core.context_processors.current_year', ], }, }, @@ -146,7 +144,7 @@ STATICFILES_FINDERS = ( DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' AUTH_USER_MODEL = 'accounts.User' -LOGIN_REDIRECT_URL = reverse_lazy('student-list') +LOGIN_REDIRECT_URL = reverse_lazy('core:home') # Decimal settings DEFAULT_DECIMAL_PLACES = 2 diff --git a/src/indici/urls.py b/src/indici/urls.py index d4ac9ff..3df9e95 100644 --- a/src/indici/urls.py +++ b/src/indici/urls.py @@ -7,9 +7,6 @@ urlpatterns = [ path('', include(('core.urls', 'core'), namespace='core')), path('accounts/', include('accounts.urls'), name='accounts'), path('accounts/', include('django.contrib.auth.urls')), - path('students/', include('students.urls'), name='students'), - path('gradebook/', include('gradebook.urls'), name='gradebook'), - path('attendance/', include('attendance.urls'), name='attendance'), path('admin/', admin.site.urls), path('__debug__/', include('debug_toolbar.urls')), ] diff --git a/src/static/styles/main.css b/src/static/styles/main.css index c825ea9..5205673 100644 --- a/src/static/styles/main.css +++ b/src/static/styles/main.css @@ -106,6 +106,7 @@ figure { ========================================================================== */ ul, ol, dl { margin-bottom: 1rem; + line-height: 1.3; } dl dt { font-weight: bold; @@ -125,6 +126,7 @@ table { border-collapse: collapse; width: 100%; text-align: left; + margin-bottom: 1rem; border-bottom: var(--table-border); } thead { @@ -136,7 +138,7 @@ thead a { color: inherit; text-decoration: none; } -tr:nth-child(even) { +tbody tr:nth-child(even) { background-color: var(--color-light-gray); } th, td { @@ -159,6 +161,11 @@ tbody tr.has-link { cursor: pointer; } +td h5 { + margin-bottom: 0; + line-height: 1.5; +} + /* Forms ========================================================================== */ form { @@ -198,6 +205,7 @@ input[type=search]:focus { } button, +input[type=submit], .action-button { cursor: pointer; border: none; @@ -211,8 +219,19 @@ button, border-radius: 0.5rem; } -form progress { - display: none; +button.action-delete, +input[type=submit].action-delete, +.action-delete { + background-color: var(--color-danger); +} + +form input[type=radio], +form input[type=checkbox] { + width: 2rem; + height: 2rem; + cursor: pointer; + vertical-align: middle; + margin: 0.25rem; } @@ -337,9 +356,12 @@ form progress { font-weight: bold; } +.site__logo { + margin-bottom: 0; +} + .nav__account { justify-self: end; - /*align-items: center;*/ } /* ========================================================================== @@ -367,6 +389,10 @@ article > header { margin-bottom: 1.5rem; } +article > section:not(:last-child) { + margin-bottom: 4rem; +} + /* List ========================================================================== */ @@ -409,6 +435,16 @@ article > header { /*justify-self: end;*/ } + +/* Form + ========================================================================== */ +.form__header { + display: flex; + align-items: baseline; + justify-content: space-between; +} + + /* Breadcrumbs ========================================================================== */ .breadcrumbs { @@ -462,8 +498,41 @@ article > header { background-color: var(--color-yellow); } -.tool *:last-child { +.tool > *:last-child { justify-self: end; align-self: end; font-size: 2rem; } + +/* SchoolYear + ========================================================================== */ +.schoolyears__list { + display: grid; + grid-template-columns: 1fr; + gap: 2rem; +} + +.schoolyear { + display: grid; + grid-template-rows: repeat(3, auto); + min-height: 4rem; + border: var(--default-border); + padding: 1rem; + border-radius: 0.5rem; + text-decoration: none; + color: var(--color-primary); +} + +.schoolyear:hover { + background-color: var(--color-yellow); +} + +.schoolyear > *:last-child { + justify-self: end; + align-self: end; + font-size: 2rem; +} + +.student__component { + margin-bottom: 2rem; +} diff --git a/src/students/__init__.py b/src/students/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/students/admin.py b/src/students/admin.py deleted file mode 100644 index a658b11..0000000 --- a/src/students/admin.py +++ /dev/null @@ -1,8 +0,0 @@ -from django.contrib import admin -from .models import ( - Student, - Parent, -) - -admin.site.register(Student) -admin.site.register(Parent) diff --git a/src/students/apps.py b/src/students/apps.py deleted file mode 100644 index c242c4d..0000000 --- a/src/students/apps.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.apps import AppConfig - - -class StudentsConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'students' diff --git a/src/students/forms.py b/src/students/forms.py deleted file mode 100644 index 300750f..0000000 --- a/src/students/forms.py +++ /dev/null @@ -1,77 +0,0 @@ -from django import forms -from django.utils import timezone - -from .models import Student, Parent, Thread, Message - -class StudentForm(forms.ModelForm): - class Meta: - model = Student - fields = ( - 'student_id', - 'first_name', - 'last_name', - 'address', - 'dob', - 'glasses', - 'allergies', - 'sit', - 'iep_behavioral', - 'iep_math', - 'iep_ela', - ) - labels = { - 'student_id': 'Student ID', - 'dob': 'DOB', - 'sit': 'SIT', - 'iep_behavioral': 'IEP Behavioral', - 'iep_math': 'IEP Math', - 'iep_ela': 'IEP ELA', - } - -class ParentForm(forms.ModelForm): - class Meta: - model = Parent - fields = ( - 'students', - 'first_name', - 'last_name', - 'relation', - 'phone_number', - 'email_address', - 'notes', - ) - -class ThreadForm(forms.ModelForm): - class Meta: - model = Thread - fields = ( - 'parent', - 'student', - 'subject', - ) - widgets = { - 'subject': forms.TextInput(attrs = { - 'placeholder': 'Reason for contact…' - }), - } - -class MessageForm(forms.ModelForm): - class Meta: - model = Message - fields = ( - 'method_of_contact', - 'date', - 'time', - 'content', - ) - widgets = { - 'content': forms.Textarea(attrs = { - 'placeholder': 'Enter your message here' - }), - 'date': forms.DateInput(attrs = { - 'type': 'date', - }), - 'time': forms.DateInput(attrs = { - 'type': 'time', - }), - } \ No newline at end of file diff --git a/src/students/migrations/0001_initial.py b/src/students/migrations/0001_initial.py deleted file mode 100644 index 1342781..0000000 --- a/src/students/migrations/0001_initial.py +++ /dev/null @@ -1,73 +0,0 @@ -# Generated by Django 3.2.7 on 2021-09-01 15:26 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='Parent', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('first_name', models.CharField(max_length=50)), - ('last_name', models.CharField(max_length=50)), - ('relation', models.CharField(choices=[('MO', 'Mother'), ('FA', 'Father'), ('GM', 'Grandmother'), ('GP', 'Grandfather'), ('SM', 'Stepmother'), ('SF', 'Stepfather'), ('OT', 'Other')], default='MO', max_length=2)), - ('phone_number', models.IntegerField(blank=True, null=True)), - ('email_address', models.EmailField(blank=True, max_length=254, null=True)), - ('notes', models.TextField(blank=True)), - ], - ), - migrations.CreateModel( - name='Student', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('student_id', models.IntegerField()), - ('first_name', models.CharField(max_length=50)), - ('last_name', models.CharField(max_length=50)), - ('address', models.TextField(blank=True)), - ('dob', models.DateField()), - ('sit', models.CharField(blank=True, choices=[('T2', 'Tier 2'), ('T3', 'Tier 3')], max_length=2)), - ('iep_behavioral', models.BooleanField(default=False)), - ('iep_math', models.BooleanField(default=False)), - ('iep_ela', models.BooleanField(default=False)), - ], - options={ - 'ordering': ['first_name'], - }, - ), - migrations.CreateModel( - name='Thread', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('subject', models.CharField(max_length=250)), - ('parent', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='students.parent')), - ('student', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='students.student')), - ], - ), - migrations.AddField( - model_name='parent', - name='students', - field=models.ManyToManyField(blank=True, to='students.Student'), - ), - migrations.CreateModel( - name='Message', - fields=[ - ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('date', models.DateField(blank=True, null=True)), - ('time', models.TimeField(blank=True, null=True)), - ('content', models.TextField()), - ('method_of_contact', models.CharField(blank=True, choices=[('PH', 'Phone'), ('EM', 'Email'), ('NO', 'Note'), ('IP', 'In person')], max_length=2)), - ('thread', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='students.thread')), - ], - options={ - 'ordering': ('-date',), - }, - ), - ] diff --git a/src/students/migrations/0002_auto_20210912_0003.py b/src/students/migrations/0002_auto_20210912_0003.py deleted file mode 100644 index dc759a5..0000000 --- a/src/students/migrations/0002_auto_20210912_0003.py +++ /dev/null @@ -1,23 +0,0 @@ -# Generated by Django 3.2.7 on 2021-09-12 00:03 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('students', '0001_initial'), - ] - - operations = [ - migrations.AddField( - model_name='student', - name='allergies', - field=models.CharField(blank=True, max_length=50), - ), - migrations.AddField( - model_name='student', - name='glasses', - field=models.BooleanField(default=False), - ), - ] diff --git a/src/students/migrations/0003_alter_student_options.py b/src/students/migrations/0003_alter_student_options.py deleted file mode 100644 index 762c594..0000000 --- a/src/students/migrations/0003_alter_student_options.py +++ /dev/null @@ -1,17 +0,0 @@ -# Generated by Django 3.2.7 on 2021-09-12 00:07 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('students', '0002_auto_20210912_0003'), - ] - - operations = [ - migrations.AlterModelOptions( - name='student', - options={'ordering': ['student_id']}, - ), - ] diff --git a/src/students/migrations/0004_auto_20210912_0030.py b/src/students/migrations/0004_auto_20210912_0030.py deleted file mode 100644 index 4c80d1f..0000000 --- a/src/students/migrations/0004_auto_20210912_0030.py +++ /dev/null @@ -1,23 +0,0 @@ -# Generated by Django 3.2.7 on 2021-09-12 00:30 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('students', '0003_alter_student_options'), - ] - - operations = [ - migrations.AlterField( - model_name='parent', - name='first_name', - field=models.CharField(blank=True, max_length=50), - ), - migrations.AlterField( - model_name='parent', - name='last_name', - field=models.CharField(blank=True, max_length=50), - ), - ] diff --git a/src/students/migrations/__init__.py b/src/students/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/students/models.py b/src/students/models.py deleted file mode 100644 index c37b855..0000000 --- a/src/students/models.py +++ /dev/null @@ -1,131 +0,0 @@ -from datetime import datetime, date -from django.db import models -from django.urls import reverse - -from django.db.models import Count, Sum, F, Value -from django.db.models.functions import Length, Upper - - -class Student(models.Model): - class Meta: - ordering = ['student_id'] - - student_id = models.IntegerField() - first_name = models.CharField(max_length=50) - last_name = models.CharField(max_length=50) - address = models.TextField(blank=True) - dob = models.DateField() - - T2 = 'T2' - T3 = 'T3' - SIT_CHOICES = [ - (T2, 'Tier 2'), - (T3, 'Tier 3'), - ] - - sit = models.CharField( - max_length=2, - choices=SIT_CHOICES, - blank=True, - ) - - glasses = models.BooleanField(default=False) - allergies = models.CharField(max_length=50, blank=True) - - iep_behavioral = models.BooleanField(default=False) - iep_math = models.BooleanField(default=False) - iep_ela = models.BooleanField(default=False) - - @property - def full_name(self): - return f"{self.first_name} {self.last_name}" - - @property - def age(self): - today = date.today() - return today.year - self.dob.year - ((today.month, today.day) < (self.dob.month, self.dob.day)) - - def __str__(self): - return f"{self.first_name} {self.last_name}" - - def get_absolute_url(self): - return reverse('student-detail', kwargs={'pk': self.pk}) - - -class Parent(models.Model): - RELATION_CHOICES = [ - ('MO', 'Mother'), - ('FA', 'Father'), - ('GM', 'Grandmother'), - ('GP', 'Grandfather'), - ('SM', 'Stepmother'), - ('SF', 'Stepfather'), - ('OT', 'Other'), - ] - students = models.ManyToManyField(Student, blank=True) - first_name = models.CharField(max_length=50, blank=True) - last_name = models.CharField(max_length=50, blank=True) - relation = models.CharField( - max_length=2, - choices=RELATION_CHOICES, - default='MO', - ) - phone_number = models.IntegerField(blank=True, null=True) - email_address = models.EmailField(blank=True, null=True) - notes = models.TextField(blank=True) - - @property - def full_name(self): - return f"{self.first_name} {self.last_name}" - - def __str__(self): - return f"{self.first_name} {self.last_name}" - - def get_absolute_url(self): - return reverse('parent-detail', kwargs={'pk': self.pk}) - - -class Thread(models.Model): - parent = models.ForeignKey(Parent, on_delete=models.CASCADE, blank=True, null=True) - student = models.ForeignKey(Student, on_delete=models.CASCADE, blank=True, null=True) - subject = models.CharField(max_length=250) - - def __str__(self): - return f"{self.parent} | {self.subject}" - - def get_absolute_url(self): - return reverse('thread-detail', kwargs={'pk': self.pk}) - - -class Message(models.Model): - class Meta: - ordering = ('-date',) - - thread = models.ForeignKey(Thread, on_delete=models.CASCADE) - date = models.DateField(blank=True, null=True) - time = models.TimeField(blank=True, null=True) - content = models.TextField() - - PHONE = 'PH' - EMAIL = 'EM' - NOTE = 'NO' - IN_PERSON = 'IP' - - MOC_CHOICES = [ - (PHONE, 'Phone'), - (EMAIL, 'Email'), - (NOTE, 'Note'), - (IN_PERSON, 'In person'), - ] - - method_of_contact = models.CharField( - max_length=2, - choices=MOC_CHOICES, - blank=True, - ) - - def __str__(self): - return f"{self.date} {self.thread.subject}" - - def get_absolute_url(self): - return reverse('message-detail', kwargs={'pk': self.thread.pk, 'message_pk': self.pk}) diff --git a/src/students/templates/students/message_confirm_delete.html b/src/students/templates/students/message_confirm_delete.html deleted file mode 100644 index dc4be73..0000000 --- a/src/students/templates/students/message_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{message}}

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/message_create_form.html b/src/students/templates/students/message_create_form.html deleted file mode 100644 index ebcc1ef..0000000 --- a/src/students/templates/students/message_create_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        {{thread.subject}}

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/message_detail.html b/src/students/templates/students/message_detail.html deleted file mode 100644 index 78770bb..0000000 --- a/src/students/templates/students/message_detail.html +++ /dev/null @@ -1,8 +0,0 @@ -
        - - {{message.date|date:"D, M j"}}
        - {{message.time|time:"TIME_FORMAT"}} via {{message.get_method_of_contact_display}} -
        - Edit -

        {{message.content|linebreaksbr}}

        -
        \ No newline at end of file diff --git a/src/students/templates/students/message_form.html b/src/students/templates/students/message_form.html deleted file mode 100644 index 77e64ef..0000000 --- a/src/students/templates/students/message_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/message_list.html b/src/students/templates/students/message_list.html deleted file mode 100644 index 61ab58c..0000000 --- a/src/students/templates/students/message_list.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/parent_confirm_delete.html b/src/students/templates/students/parent_confirm_delete.html deleted file mode 100644 index 7f4631d..0000000 --- a/src/students/templates/students/parent_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{parent}}

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/parent_create_form.html b/src/students/templates/students/parent_create_form.html deleted file mode 100644 index fc26aa9..0000000 --- a/src/students/templates/students/parent_create_form.html +++ /dev/null @@ -1,17 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Create Parent

        -

        For {{student}}

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/parent_detail.html b/src/students/templates/students/parent_detail.html deleted file mode 100644 index 48deb2a..0000000 --- a/src/students/templates/students/parent_detail.html +++ /dev/null @@ -1,63 +0,0 @@ -{% extends "base.html" %} -{% load students_filters %} - -{% block content %} -
        -
        -

        {{parent.full_name}}

        - Update parent details -
        -
        -
        -
        Phone Number
        -
        {{parent.phone_number|phone_format}}
        -
        Email
        -
        {{parent.email_address}}
        - {% if parent.address %} -
        Address
        -
        -
        {{parent.address|linebreaksbr}}
        -
        - {% endif %} - {% if parent.notes %} -
        Notes
        -
        {{parent.notes|linebreaksbr}}
        - {% endif %} -
        -
        -
        -

        Communications

        - -
        -
        -

        Parent to:

        -
          - {% for student in parent.students.all %} -
        • - {{student.full_name}} - {% if student.sit %} - SIT: {{student.get_sit_display}} - {% endif %} - {% if student.iep_behavioral %} - IEP behavioral - {% endif %} - {% if student.iep_math %} - IEP math - {% endif %} - {% if student.iep_ela %} - IEP ELA - {% endif %} -
        • - {% endfor %} -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/parent_form.html b/src/students/templates/students/parent_form.html deleted file mode 100644 index 26494a5..0000000 --- a/src/students/templates/students/parent_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/parent_list.html b/src/students/templates/students/parent_list.html deleted file mode 100644 index c1e1d11..0000000 --- a/src/students/templates/students/parent_list.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/student_confirm_delete.html b/src/students/templates/students/student_confirm_delete.html deleted file mode 100644 index e33bef1..0000000 --- a/src/students/templates/students/student_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{student}}

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/student_create_form.html b/src/students/templates/students/student_create_form.html deleted file mode 100644 index 58e6631..0000000 --- a/src/students/templates/students/student_create_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Create Student

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/student_detail.html b/src/students/templates/students/student_detail.html deleted file mode 100644 index f872cb2..0000000 --- a/src/students/templates/students/student_detail.html +++ /dev/null @@ -1,162 +0,0 @@ -{% extends "base.html" %} -{% load students_filters %} - -{% block content %} -
        -
        -
        -
        -

        {{student.student_id}} — {{student}}

        -

        -
        - Update student details -
        -
        - {% if student.glasses %} - Glasses - {% endif %} - {% if student.sit %} - SIT: {{student.get_sit_display}} - {% endif %} - {% if student.iep_behavioral %} - IEP behavioral - {% endif %} - {% if student.iep_math %} - IEP math - {% endif %} - {% if student.iep_ela %} - IEP ELA - {% endif %} -
        -
        - {% if student.allergies %} -
        Allergies
        -
        {{student.allergies}}
        - {% endif %} -
        Birthday
        -
        {{student.dob}}
        -
        Age
        -
        {{student.age}}
        - {% if student.address %} -
        Address
        -
        -
        {{student.address|linebreaksbr}}
        -
        - {% endif %} -
        -
        -
        -

        Grades

        - - - {% for subject in subject_list %} - - - - - {% empty %} - - - - {% endfor %} - -
        {{subject}}{{subject.grade|grade_as_percentage:subject.grade_total}}%
        No grades yet.
        -
        -
        -

        Parents

        -

        - + New parent -

        -
        - {% for parent in student.parent_set.all %} -
        - {{parent.get_relation_display}} -

        {{parent.full_name}}

        -
        -
        Phone Number
        -
        {{parent.phone_number|phone_format}}
        -
        Email
        -
        {{parent.email_address}}
        - {% if parent.address %} -
        Address
        -
        -
        {{parent.address|linebreaksbr}}
        -
        - {% endif %} - {% if parent.notes %} -
        Notes
        -
        {{parent.notes|linebreaksbr}}
        - {% endif %} -
        -
        - {% empty %} -

        No parents yet.

        - {% endfor %} -
        -
        - -
        -

        Gradebook

        - -
        - {% regroup score_list by component.subject as score_list %} - {% for subject in score_list %} -

        {{subject.grouper}}

        - - - - - - - - - - - - - {% for score in subject.list %} - - - - - - - - - - {% endfor %} - -
        Due DateComponentCategoryScoreTotalPercentage
        {{score.component.due_date}}{{score.component}}{{score.component.get_category_display}}{{score.value}}{{score.component.grade_total}}{{score.grade_as_percentage}}%Change score
        - {% empty %} -

        No components graded yet.

        - {% endfor %} -
        -
        - -
        -

        Attendance

        -
        - {% regroup entry_list by get_status_display as rentry_list %} - {% for status in rentry_list %} -

        {{ status.grouper }}

        - - - - - - - - - {% for entry in status.list %} - - - - - {% endfor %} - -
        DateStatus
        {{entry.day.date}}Update
        - {% endfor %} -
        -
        -
        -{% endblock %} diff --git a/src/students/templates/students/student_form.html b/src/students/templates/students/student_form.html deleted file mode 100644 index be0bc2a..0000000 --- a/src/students/templates/students/student_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/student_list.html b/src/students/templates/students/student_list.html deleted file mode 100644 index 0e45076..0000000 --- a/src/students/templates/students/student_list.html +++ /dev/null @@ -1,49 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -
        -

        Students

        -

        - See all parents → -

        -

        - + New student -

        -
        -
        -
          - {% for student in student_list %} -
        • - {{student.student_id}} — {{student.full_name}} - - {% if student.glasses %} - Glasses - {% endif %} - {% if student.sit %} - SIT: {{student.get_sit_display}} - {% endif %} - {% if student.iep_behavioral %} - IEP behavioral - {% endif %} - {% if student.iep_math %} - IEP math - {% endif %} - {% if student.iep_ela %} - IEP ELA - {% endif %} - {% if student.allergies %} -
          Allergies: {{student.allergies}} - {% endif %} - {% if student.parent__count > 0 %} -
          Parents: - {% for parent in student.parent_set.all %} - {{parent.full_name}}{% if not forloop.last %},{% endif %} - {% endfor %} - {% endif %} -
        • - {% endfor %} -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/thread_confirm_delete.html b/src/students/templates/students/thread_confirm_delete.html deleted file mode 100644 index ad6a637..0000000 --- a/src/students/templates/students/thread_confirm_delete.html +++ /dev/null @@ -1,13 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Delete {{thread}}

        -
        - {% csrf_token %} -

        - or cancel -

        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/thread_create_form.html b/src/students/templates/students/thread_create_form.html deleted file mode 100644 index 8ec37b3..0000000 --- a/src/students/templates/students/thread_create_form.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Create Thread

        -
        -
        - {% csrf_token %} - {{form.as_p}} -

        - or cancel -

        -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/thread_detail.html b/src/students/templates/students/thread_detail.html deleted file mode 100644 index 5801b45..0000000 --- a/src/students/templates/students/thread_detail.html +++ /dev/null @@ -1,30 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/thread_form.html b/src/students/templates/students/thread_form.html deleted file mode 100644 index 62e2d04..0000000 --- a/src/students/templates/students/thread_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - -{% endblock %} \ No newline at end of file diff --git a/src/students/templates/students/thread_list.html b/src/students/templates/students/thread_list.html deleted file mode 100644 index f23f27f..0000000 --- a/src/students/templates/students/thread_list.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
        -

        Communications

        -
        -

        - + New thread -

        -
          - {% for thread in thread_list %} -
        • - {{thread.subject}} - {{thread.message__count}}
          - {% if thread.parent %} - Parent: {{thread.parent}}
          - {% endif %} - {% if thread.student %} - Student: {{thread.student}} - {% endif %} -
        • - {% endfor %} -
        -
        -
        -{% endblock %} \ No newline at end of file diff --git a/src/students/templatetags/__init__.py b/src/students/templatetags/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/students/templatetags/students_filters.py b/src/students/templatetags/students_filters.py deleted file mode 100644 index d0e7c3f..0000000 --- a/src/students/templatetags/students_filters.py +++ /dev/null @@ -1,35 +0,0 @@ -from django import template - -register = template.Library() - -@register.filter() -def timedelta_format(value, arg=2): - """Returns timedelta as float rounded to arg, with default of 2""" - if value.days: - return round((value.days*24) + value.seconds/3600, arg) - elif value.seconds: - return round(value.seconds/3600, arg) - return 0 - - -@register.filter() -def phone_format(value): - value = str(value) - if value: - if len(value) == 10: - area_code = value[:3] - prefix = value[3:6] - line = value[6:10] - return f"+1-{area_code}-{prefix}-{line}" - elif len(value) == 11: - country = value[:1] - area_code = value[1:4] - prefix = value[4:7] - line = value[7:11] - return f"+{country}-{area_code}-{prefix}-{line}" - else: - return "No phone number." - -@register.filter() -def grade_as_percentage(numerator, denominator): - return round(numerator / denominator * 100, 2) \ No newline at end of file diff --git a/src/students/tests.py b/src/students/tests.py deleted file mode 100644 index 7ce503c..0000000 --- a/src/students/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/src/students/urls.py b/src/students/urls.py deleted file mode 100644 index b0dc9c8..0000000 --- a/src/students/urls.py +++ /dev/null @@ -1,43 +0,0 @@ -from django.urls import path, include -from . import views - -urlpatterns = [ - path('', views.StudentListView.as_view(), name='student-list'), - path('new/', views.StudentCreateView.as_view(), name='student-create'), - path('/', include([ - path('', views.StudentDetailView.as_view(), name='student-detail'), - path('update/', views.StudentUpdateView.as_view(), name='student-update'), - path('delete/', views.StudentDeleteView.as_view(), name='student-delete'), - - - ])), - - path('parents/', views.ParentListView.as_view(), name='parent-list'), - path('parents/new/', views.ParentCreateView.as_view(), name='parent-create'), - path('parents//', include([ - path('', views.ParentDetailView.as_view(), name='parent-detail'), - path('update/', views.ParentUpdateView.as_view(), name='parent-update'), - path('delete/', views.ParentDeleteView.as_view(), name='parent-delete'), - ])), - - - path('threads/', views.ThreadListView.as_view(), name='thread-list'), - path('threads/new/', views.ThreadCreateView.as_view(), name='thread-create'), - path('threads//', include([ - path('', views.ThreadDetailView.as_view(), name='thread-detail'), - path('update/', views.ThreadUpdateView.as_view(), name='thread-update'), - path('delete/', views.ThreadDeleteView.as_view(), name='thread-delete'), - - - path('messages/', views.MessageListView.as_view(), name='message-list'), - path('messages/new/', views.MessageCreateView.as_view(), name='message-create'), - path('messages//', include([ - path('', views.MessageDetailView.as_view(), name='message-detail'), - path('update/', views.MessageUpdateView.as_view(), name='message-update'), - path('delete/', views.MessageDeleteView.as_view(), name='message-delete'), - ])), - ])), - - - -] diff --git a/src/students/views.py b/src/students/views.py deleted file mode 100644 index 99914d3..0000000 --- a/src/students/views.py +++ /dev/null @@ -1,206 +0,0 @@ -from django.shortcuts import render -from django.urls import reverse, reverse_lazy -from django.utils import timezone -from django.views.generic.base import TemplateView -from django.views.generic.edit import FormView, CreateView, UpdateView, DeleteView -from django.views.generic.detail import DetailView -from django.views.generic.list import ListView -from django.contrib.auth.mixins import LoginRequiredMixin - -from django.db.models import Prefetch, Subquery, Count, Sum, F, Q, Value -from django.db.models.functions import Length, Upper - -from .models import Student, Parent, Thread, Message -from .forms import StudentForm, ParentForm, ThreadForm, MessageForm - -from gradebook.models import ( - Tag, - Subject, - Component, - Score, -) - -from attendance.models import Entry - - -class StudentListView(LoginRequiredMixin, ListView): - model = Student - - def get_queryset(self): - object_list = Student.objects.annotate( - Count('parent') - ).prefetch_related('parent_set').order_by('student_id') - return object_list - -class StudentCreateView(LoginRequiredMixin, CreateView): - model = Student - form_class = StudentForm - template_name_suffix = '_create_form' - -class StudentDetailView(LoginRequiredMixin, DetailView): - model = Student - - def get_queryset(self): - object_list = Student.objects.all().prefetch_related('parent_set') - return object_list - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - - context['score_list'] = Score.objects.select_related( - 'student' - ).prefetch_related( - 'component' - ).select_related( - 'component__subject' - ).filter( - student=self.object - ).order_by( - 'component__subject', - '-component__due_date' - ) - - context['subject_list'] = Subject.objects.filter( - component__score__student=self.object - ).annotate( - grade=Sum(F('component__score__value')), - grade_total=Sum('component__grade_total') - ) - - context['entry_list'] = Entry.objects.select_related( - 'day' - ).filter( - student=self.object - ).order_by('status', '-day__date').select_related('student') - - return context - - -class StudentUpdateView(LoginRequiredMixin, UpdateView): - model = Student - form_class = StudentForm - - def get_success_url(self): - pk = self.kwargs["pk"] - return reverse('student-detail', kwargs={'pk': pk}) - -class StudentDeleteView(LoginRequiredMixin, DeleteView): - model = Student - success_url = reverse_lazy('student-list') - - - -class ParentListView(LoginRequiredMixin, ListView): - model = Parent - -class ParentCreateView(LoginRequiredMixin, CreateView): - model = Parent - form_class = ParentForm - template_name_suffix = '_create_form' - -class ParentDetailView(LoginRequiredMixin, DetailView): - model = Parent - -class ParentUpdateView(LoginRequiredMixin, UpdateView): - model = Parent - form_class = ParentForm - -class ParentDeleteView(LoginRequiredMixin, DeleteView): - model = Parent - success_url = reverse_lazy('parent-list') - - - -class ThreadListView(LoginRequiredMixin, ListView): - model = Thread - - def get_queryset(self): - object_list = Thread.objects.annotate( - Count('message') - ) - return object_list - -class ThreadCreateView(LoginRequiredMixin, CreateView): - model = Thread - form_class = ThreadForm - template_name_suffix = '_create_form' - -class ThreadDetailView(LoginRequiredMixin, DetailView): - model = Thread - - def get_object(self): - queryset = Thread.objects.filter( - pk=self.kwargs.get(self.pk_url_kwarg) - ).prefetch_related('message_set').select_related('parent', 'student') - obj = queryset.get() - return obj - -class ThreadUpdateView(LoginRequiredMixin, UpdateView): - model = Thread - form_class = ThreadForm - -class ThreadDeleteView(LoginRequiredMixin, DeleteView): - model = Thread - success_url = reverse_lazy('thread-list') - - -# Messags -class MessageListView(LoginRequiredMixin, ListView): - model = Message - pk_url_kwarg = 'message_pk' - -class MessageCreateView(LoginRequiredMixin, CreateView): - model = Message - pk_url_kwarg = 'message_pk' - template_name_suffix = '_create_form' - form_class = MessageForm - - def get_initial(self): - today = timezone.localtime(timezone.now()).date() - initial = { - 'date': today, - } - return initial - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context['thread'] = Thread.objects.get(pk=self.kwargs['pk']) - return context - - def form_valid(self, form): - form.instance.thread = Thread.objects.get(pk=self.kwargs['pk']) - return super().form_valid(form) - - def get_success_url(self): - return reverse('thread-detail', kwargs={'pk': self.kwargs['pk']}) - -class MessageDetailView(LoginRequiredMixin, DetailView): - model = Message - pk_url_kwarg = 'message_pk' - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context['thread'] = Thread.objects.get(pk=self.kwargs['pk']) - return context - -class MessageUpdateView(LoginRequiredMixin, UpdateView): - model = Message - pk_url_kwarg = 'message_pk' - form_class = MessageForm - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context['thread'] = Thread.objects.get(pk=self.kwargs['pk']) - return context - - def get_success_url(self): - return reverse('thread-detail', kwargs={'pk': self.kwargs['pk']}) - - - -class MessageDeleteView(LoginRequiredMixin, DeleteView): - model = Message - pk_url_kwarg = 'message_pk' - - def get_success_url(self): - return reverse('thread-detail', kwargs={'pk': self.kwargs['pk']}) diff --git a/src/templates/base.html b/src/templates/base.html index b967abf..6589e29 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -23,25 +23,25 @@