Skip to content

Commit

Permalink
Merge 6dad26a into 07cbc77
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Sep 10, 2023
2 parents 07cbc77 + 6dad26a commit 9f0eb83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rdmo/questions/migrations/0078_catalog_uri_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='catalog',
name='uri_path',
field=models.CharField(blank=True, help_text='The path for the URI of this catalog.', max_length=512, verbose_name='Path'),
field=models.CharField(blank=True, help_text='The path for the URI of this catalog.', max_length=512, verbose_name='URI Path'),
),
]
2 changes: 1 addition & 1 deletion rdmo/questions/models/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Catalog(Model, TranslationMixin):
)
uri_path = models.CharField(
max_length=512, blank=True,
verbose_name=_('Path'),
verbose_name=_('URI Path'),
help_text=_('The path for the URI of this catalog.')
)
comment = models.TextField(
Expand Down

0 comments on commit 9f0eb83

Please sign in to comment.