23 lines
806 B
Python
23 lines
806 B
Python
"""
|
|
Namespace that defines fields common to all blocks used in the LMS
|
|
"""
|
|
from xblock.fields import Boolean, Scope, String, XBlockMixin
|
|
|
|
|
|
class LmsBlockMixin(XBlockMixin):
|
|
"""
|
|
Mixin that defines fields common to all blocks used in the LMS
|
|
"""
|
|
hide_from_toc = Boolean(
|
|
help="Whether to display this module in the table of contents",
|
|
default=False,
|
|
scope=Scope.settings
|
|
)
|
|
format = String(
|
|
help="What format this module is in (used for deciding which "
|
|
"grader to apply, and what to show in the TOC)",
|
|
scope=Scope.settings,
|
|
)
|
|
source_file = String(help="source file name (eg for latex)", scope=Scope.settings)
|
|
ispublic = Boolean(help="Whether this course is open to the public, or only to admins", scope=Scope.settings)
|