Skip to content

Commit

Permalink
modifies text to render as per ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
nicopicchio committed Sep 21, 2023
1 parent d908aa9 commit aa85320
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/peoplefinder/migrations/0113_person_usual_office_days.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.1.10 on 2023-09-20 12:01
# Generated by Django 4.1.10 on 2023-09-21 14:51

from django.db import migrations, models

Expand All @@ -14,10 +14,10 @@ class Migration(migrations.Migration):
name="usual_office_days",
field=models.CharField(
blank=True,
help_text="e.g. I usually come in on Mondays and Wednesdays",
help_text="For example: I usually come in on Mondays and Wednesdays",
max_length=200,
null=True,
verbose_name="What days do you usually come into the office?",
verbose_name="What days do you usually come in to the office?",
),
),
]
4 changes: 2 additions & 2 deletions src/peoplefinder/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,8 @@ class RemoteWorking(models.TextChoices):
blank=True,
)
usual_office_days = models.CharField(
"What days do you usually come into the office?",
help_text=("e.g. I usually come in on Mondays and Wednesdays"),
"What days do you usually come in to the office?",
help_text=("For example: I usually come in on Mondays and Wednesdays"),
max_length=200,
null=True,
blank=True,
Expand Down

0 comments on commit aa85320

Please sign in to comment.