]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/view.py
OSQA-465, be able to embed YouTube videos. Adding a new setting to the View Settings...
[osqa.git] / forum / settings / view.py
index 5ebd228f584e56c5691a00d86e60553a147b4776..14b3aad131898dfcf7b4ba7b9285264d85fdbbdc 100644 (file)
@@ -4,6 +4,11 @@ from django.utils.translation import ugettext_lazy as _
 """ view settings """
 VIEW_SET = SettingSet('view', _('View settings'), _("Set up how certain parts of the site are displayed."), 20)
 
+EMBED_YOUTUBE_VIDEOS = Setting('EMBED_YOUTUBE_VIDEOS', True, VIEW_SET, dict(
+label = _("Embed YouTube Videos"),
+help_text = _("If you check this YouTube videos will be embedded"),
+required=False))
+
 SUMMARY_LENGTH = Setting('SUMMARY_LENGTH', 300, VIEW_SET, dict(
 label = _("Summary Length"),
 help_text = _("The number of characters that are going to be displayed in order to get the content summary.")))