Skip to content
Snippets Groups Projects
Commit 254ee798 authored by Julian's avatar Julian
Browse files

Replace description with the correct attribute help_text

parent 04cd5cb6
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ class Meeting(models.Model):
allow_start_stop_recording = models.BooleanField(
verbose_name=_("Allow starting and stopping recording"),
default=True,
description=_(
help_text=_(
"Allows users to manually start and stop recording. If recording is set to auto-start, this forces the whole meeting to be recorded. If auto-start is disabled, this causes the recording to be discarded."
),
)
......@@ -133,7 +133,7 @@ class Meeting(models.Model):
webcams_only_for_moderator = models.BooleanField(
verbose_name=_("Webcams only for moderators"),
default=False,
description=_(
help_text=_(
"Webcam streams of participants are only visible for moderators, not for other participants."
),
)
......@@ -141,12 +141,12 @@ class Meeting(models.Model):
mute_on_start = models.BooleanField(
verbose_name=_("Mute on start"),
default=False,
description=_("Participants are muted when they join the meeting"),
help_text=_("Participants are muted when they join the meeting"),
)
allow_mods_to_unmute_users = models.BooleanField(
verbose_name=_("Allow moerators to unmute"),
default=False,
description=_("Allow moderators to unmute other users (this is a privacy risk)"),
help_text=_("Allow moderators to unmute other users (this is a privacy risk)"),
)
enable_cam = models.BooleanField(verbose_name=_("Allow sharing webcam"), default=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment