Change "Build Title" to "Description"

This commit is contained in:
Oliver Walters 2020-10-20 00:26:26 +11:00
parent e8a0095e50
commit 98d20bceeb
2 changed files with 19 additions and 1 deletions

View 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'),
),
]

View File

@ -89,7 +89,7 @@ class Build(MPTTModel):
)
title = models.CharField(
verbose_name=_('Build Title'),
verbose_name=_('Description'),
blank=False,
max_length=100,
help_text=_('Brief description of the build')