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
+2
View File
@@ -1442,6 +1442,8 @@ class CidUser(models.Model):
"CidUserGroup", on_delete=models.SET_NULL, null=True, blank=True
)
notes = models.TextField(blank=True, help_text="Internal notes about the candidate")
class Meta:
indexes = [models.Index(fields=["cid"])]