Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add exam allowance model #287

Merged
merged 2 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions edx_exams/apps/core/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
Exam,
ExamAttempt,
ProctoringProvider,
StudentAllowance,
User
)

Expand Down Expand Up @@ -103,3 +104,20 @@ class CourseStaffRoleAdmin(admin.ModelAdmin):
list_filter = ('course_id',)
search_fields = ('user__username', 'course_id')
ordering = ('course_id',)


@admin.register(StudentAllowance)
class StudentAllowanceAdmin(admin.ModelAdmin):
""" Admin configuration for the Student Allowance model """
list_display = ('username', 'course_id', 'exam_name', 'extra_time_mins')
search_fields = ('user__username', 'exam__course_id', 'exam__exam_name')
ordering = ('-modified',)

def username(self, obj):
return obj.user.username

def exam_name(self, obj):
return obj.exam.exam_name

def course_id(self, obj):
return obj.exam.course_id
33 changes: 33 additions & 0 deletions edx_exams/apps/core/migrations/0026_studentallowance.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Generated by Django 4.2.13 on 2024-07-11 15:45

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone
import model_utils.fields


class Migration(migrations.Migration):

dependencies = [
('core', '0025_proctoringprovider_org_key'),
]

operations = [
migrations.CreateModel(
name='StudentAllowance',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('created', model_utils.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False, verbose_name='created')),
('modified', model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified')),
('extra_time_mins', models.PositiveIntegerField()),
('exam', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.exam')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
options={
'verbose_name': 'student allowance',
'db_table': 'exams_studentallowance',
'unique_together': {('user', 'exam')},
},
),
]
19 changes: 19 additions & 0 deletions edx_exams/apps/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,3 +428,22 @@ def _sync_exams_with_new_provider(cls, course_id, new_provider):
exam.save()

return len(exams)


class StudentAllowance(TimeStampedModel):
"""
Allowance for extra time in an exam

.. no_pii:
"""
user = models.ForeignKey(User, db_index=True, on_delete=models.CASCADE)

exam = models.ForeignKey(Exam, on_delete=models.CASCADE)

extra_time_mins = models.PositiveIntegerField()

class Meta:
""" Meta class for this Django model """
db_table = 'exams_studentallowance'
verbose_name = 'student allowance'
unique_together = ('user', 'exam')
Loading