Syntax —
field_name = models.Field (verbose_name = "name")
Inline field validation verbose_name
Explanation
Illustration of verbose_name using an example. Consider a project named pythonengineering
that has an application named geeks
.
Refer to the following articles to check how to create a project and an app in Django.
Enter the following code into the models.py
file of the geeks application. We will use CharField to experiment with all the margin variations.
from django.db import models from django.db.models import Model # Create your models here. class GeeksModel (Model): geeks_field = models.CharField ( max_length = 200 , ) |
After running makemigrations
and migrating to Django and rendering the above model, let’s check the display name for geeks_field
.
Now let’s verbose_name
this using the verbose_name
attribute. change models.py
to
from django.db import models from django.db.models import Model # Create your models here. class GeeksModel (Model): geeks_field = models.CharField ( max_length = 200 , verbose_name = " Geeksforgeeks " ) |
Since models.py has changed, run makemigrations and migrate the project again. Open the admin interface and check the name of this field again, it changes to "Geeksforgeeks".
You can see the modified image. Therefore verbose_name
changes the field name.
Shop
Learn programming in R: courses
$FREE
Best Python online courses for 2022
$FREE
Best laptop for Fortnite
$399+
Best laptop for Excel
$
Best laptop for Solidworks
$399+
Best laptop for Roblox
$399+
Best computer for crypto mining
$499+
Best laptop for Sims 4
$
Latest questions
PythonStackOverflow
Common xlabel/ylabel for matplotlib subplots
1947 answers
PythonStackOverflow
Check if one list is a subset of another in Python
1173 answers
PythonStackOverflow
How to specify multiple return types using type-hints
1002 answers
PythonStackOverflow
Printing words vertically in Python
909 answers
PythonStackOverflow
Python Extract words from a given string
798 answers
PythonStackOverflow
Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?
606 answers
PythonStackOverflow
Python os.path.join () method
384 answers
PythonStackOverflow
Flake8: Ignore specific warning for entire file
360 answers
Wiki
Python | How to copy data from one Excel sheet to another
Common xlabel/ylabel for matplotlib subplots
Check if one list is a subset of another in Python
How to specify multiple return types using type-hints
Printing words vertically in Python
Python Extract words from a given string
Cyclic redundancy check in Python
Finding mean, median, mode in Python without libraries
Python add suffix / add prefix to strings in a list
Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?
Python - Move item to the end of the list
Python - Print list vertically