SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 5d545330 authored by George Katsikas's avatar George Katsikas :goat:
Browse files

change profile original name helptext

parent a32ab073
No related branches found
No related tags found
No related merge requests found
# Generated by Django 4.2.15 on 2024-08-23 09:38
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0042_profileemail_token_expiration_and_more"),
]
operations = [
migrations.AlterField(
model_name="profile",
name="first_name_original",
field=models.CharField(
blank=True,
default="",
help_text="Optional: Name in non-Latin alphabet",
max_length=64,
verbose_name="First name (original)",
),
),
migrations.AlterField(
model_name="profile",
name="last_name_original",
field=models.CharField(
blank=True,
default="",
help_text="Optional: Name in non-Latin alphabet",
max_length=64,
verbose_name="Last name (original)",
),
),
]
......@@ -65,14 +65,14 @@ class Profile(models.Model):
blank=True,
default="",
verbose_name="First name (original)",
help_text="Name in original script (if not using the Latin alphabet)",
help_text="Optional: Name in non-Latin alphabet",
)
last_name_original = models.CharField(
max_length=64,
blank=True,
default="",
verbose_name="Last name (original)",
help_text="Name in original script (if not using the Latin alphabet)",
help_text="Optional: Name in non-Latin alphabet",
)
orcid_authenticated = models.BooleanField(default=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment