Add notes field to CidUser model and update related forms and templates

This commit is contained in:
Ross
2025-12-29 10:17:54 +00:00
parent df0b26de36
commit 98cef9ea57
4 changed files with 27 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
# Generated by Django 5.2.7 on 2025-12-29 10:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('generic', '0029_add_unique_constraint_supervisor_email'),
]
operations = [
migrations.AddField(
model_name='ciduser',
name='notes',
field=models.TextField(blank=True, help_text='Internal notes about the candidate'),
),
]