@@ -121,9 +121,10 @@ class Migration(migrations.Migration):
121121 default = dict ,
122122 dump_kwargs = {"ensure_ascii" : False , "indent" : 4 },
123123 help_text = (
124- 'Additional <a href="http://netjsonconfig.openwisp.org'
125- '/en/stable/general/basics.html#context" target="_blank">'
126- "context (configuration variables)</a> in JSON format"
124+ "allows overriding "
125+ '<a href="https://openwisp.io/docs/stable/controller/user/variables.html' # noqa: E501
126+ '" target="_blank">'
127+ "configuration variables</a>"
127128 ),
128129 load_kwargs = {"object_pairs_hook" : collections .OrderedDict },
129130 ),
@@ -579,9 +580,10 @@ class Migration(migrations.Migration):
579580 default = dict ,
580581 dump_kwargs = {"ensure_ascii" : False , "indent" : 4 },
581582 help_text = (
582- "A dictionary containing the default values for the "
583- "variables used by this template; these default variables "
584- "will be used during schema validation."
583+ "Define default values for the variables used "
584+ "in this template. These values are used during "
585+ "validation and when a variable is not provided "
586+ "by the device, group, or organization."
585587 ),
586588 load_kwargs = {"object_pairs_hook" : collections .OrderedDict },
587589 verbose_name = "Default Values" ,
@@ -709,8 +711,8 @@ class Migration(migrations.Migration):
709711 default = dict ,
710712 dump_kwargs = {"indent" : 4 },
711713 help_text = (
712- 'This field can be used to add "Configuration Variables"'
713- " to the devices. "
714+ "Define reusable configuration variables "
715+ "available to all devices in this organization "
714716 ),
715717 load_kwargs = {"object_pairs_hook" : collections .OrderedDict },
716718 verbose_name = "Configuration Variables" ,
@@ -765,9 +767,11 @@ class Migration(migrations.Migration):
765767 dump_kwargs = {"ensure_ascii" : False , "indent" : 4 },
766768 load_kwargs = {"object_pairs_hook" : collections .OrderedDict },
767769 help_text = (
768- "Group meta data, use this field to store data which is"
769- " related to this group and can be retrieved via the"
770- " REST API."
770+ "Store custom metadata related to this group. "
771+ "This field is intended for arbitrary data that "
772+ "does not affect device configuration and can "
773+ "be retrieved via the REST API for integrations "
774+ "or external tools."
771775 ),
772776 verbose_name = "Metadata" ,
773777 ),
@@ -779,8 +783,8 @@ class Migration(migrations.Migration):
779783 default = dict ,
780784 dump_kwargs = {"ensure_ascii" : False , "indent" : 4 },
781785 help_text = (
782- "This field can be used to add meta data for the group "
783- ' or to add "Configuration Variables" to the devices.'
786+ "Define configuration variables available "
787+ " to all devices in this group"
784788 ),
785789 load_kwargs = {"object_pairs_hook" : collections .OrderedDict },
786790 verbose_name = "Configuration Variables" ,
0 commit comments