Skip to content
Snippets Groups Projects
Verified Commit fa0507d7 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[Django] Add help text for conference PIN

parent b881d23f
No related branches found
No related tags found
No related merge requests found
...@@ -116,6 +116,7 @@ class Meeting(models.Model): ...@@ -116,6 +116,7 @@ class Meeting(models.Model):
null=True, null=True,
unique=True, unique=True,
validators=[RegexValidator(r"[0-9]*", _("The PIN must be numerical"))], validators=[RegexValidator(r"[0-9]*", _("The PIN must be numerical"))],
help_text=_("PIN for phone dial-in (if available)"),
) )
record = models.BooleanField(verbose_name=_("Record media and events"), default=False) record = models.BooleanField(verbose_name=_("Record media and events"), default=False)
......
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