Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Commit 6eccf20

Browse files
committed
made migration
1 parent 0d29b29 commit 6eccf20

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.1.2 on 2025-03-02 20:55
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('coldcall', '0008_alter_studentrating_date'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='student',
15+
name='dropped',
16+
field=models.BooleanField(default=False),
17+
),
18+
]

coldcall/views/views_student.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def transfer_student(request, student_id):
170170
return render(request, "coldcall/transfer_student.html", {"student": student, "classes": classes})
171171

172172

173-
173+
#
174174
class StudentDeleteView(View):
175175
def post(self, request, student_id):
176176
try:

0 commit comments

Comments
 (0)