Commit dfbcb1c5 by Sven Marnach

Improve wording of header and footer HTML help texts.

parent 6a4f355d
......@@ -241,7 +241,7 @@ class DashboardBlock(StudioEditableXBlockMixin, XBlock):
header_html = String(
display_name=_("Header HTML"),
default="",
help=_("Additional HTML to include after the heading."),
help=_("Custom text to include at the beginning of the report."),
multiline_editor="html",
resettable_editor=False,
scope=Scope.content,
......@@ -249,7 +249,7 @@ class DashboardBlock(StudioEditableXBlockMixin, XBlock):
footer_html = String(
display_name=_("Footer HTML"),
default="",
help=_("Additional HTML to include after the bottom of the page."),
help=_("Custom text to include at the end of the report."),
multiline_editor="html",
resettable_editor=False,
scope=Scope.content,
......
......@@ -74,7 +74,7 @@
<div class="report-footer">
{{ footer_html|safe }}
</div>
{% endif %}
{% endif %}
</div>
{% if blocks %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment