dataviz: clearer name for filters time range (#62528)

This commit is contained in:
Corentin Sechet 2022-03-08 12:37:30 +01:00
parent b39e5a9f57
commit 888209400d
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ class Migration(migrations.Migration):
blank=True,
choices=TIME_FILTERS + TIME_FILTERS_TEMPLATE,
max_length=20,
verbose_name='Filtering (time)',
verbose_name='Shown period',
),
),
migrations.AddField(

View File

@ -199,7 +199,7 @@ class ChartNgCell(CellBase):
filter_params = JSONField(default=dict)
title = models.CharField(_('Title'), max_length=150, blank=True)
time_range = models.CharField(
_('Filtering (time)'),
_('Shown period'),
max_length=20,
blank=True,
choices=TIME_FILTERS + TIME_FILTERS_TEMPLATE,