mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Change "Build Title" to "Description"
This commit is contained in:
parent
e8a0095e50
commit
98d20bceeb
18
InvenTree/build/migrations/0020_auto_20201019_1325.py
Normal file
18
InvenTree/build/migrations/0020_auto_20201019_1325.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 3.0.7 on 2020-10-19 13:25
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('build', '0019_auto_20201019_1302'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='build',
|
||||||
|
name='title',
|
||||||
|
field=models.CharField(help_text='Brief description of the build', max_length=100, verbose_name='Description'),
|
||||||
|
),
|
||||||
|
]
|
@ -89,7 +89,7 @@ class Build(MPTTModel):
|
|||||||
)
|
)
|
||||||
|
|
||||||
title = models.CharField(
|
title = models.CharField(
|
||||||
verbose_name=_('Build Title'),
|
verbose_name=_('Description'),
|
||||||
blank=False,
|
blank=False,
|
||||||
max_length=100,
|
max_length=100,
|
||||||
help_text=_('Brief description of the build')
|
help_text=_('Brief description of the build')
|
||||||
|
Loading…
Reference in New Issue
Block a user