diff --git a/recruitment/models.py b/recruitment/models.py index 602912cb6..822d34ef8 100644 --- a/recruitment/models.py +++ b/recruitment/models.py @@ -720,7 +720,7 @@ class StageNote(HorillaModel): """ candidate_id = models.ForeignKey(Candidate, on_delete=models.CASCADE) - description = models.TextField(verbose_name=_("Description"), max_length=255) + description = models.TextField(verbose_name=_("Description")) # 905 stage_id = models.ForeignKey(Stage, on_delete=models.CASCADE) stage_files = models.ManyToManyField(StageFiles, blank=True) updated_by = models.ForeignKey( diff --git a/recruitment/templates/pipeline/pipeline_components/view_note.html b/recruitment/templates/pipeline/pipeline_components/view_note.html index 23df97b42..a1e57307e 100644 --- a/recruitment/templates/pipeline/pipeline_components/view_note.html +++ b/recruitment/templates/pipeline/pipeline_components/view_note.html @@ -162,13 +162,16 @@ - {% trans 'by' %} - - {{ note.updated_user }} @ {{note.stage_id }} - {% trans "stage" %} + {% trans "by" %} + User + {{note.updated_user}} + + + {% trans "at" %}   + {{ note.created_at|date:"Y-m-d" }} +   + {{ note.created_at|time:"H:i" }}