Commit d1d3e6b1 by David Baumgold

Merge pull request #3460 from edx/release

Merging release back to master
parents 6686eb54 29d32d35
...@@ -10,6 +10,9 @@ Blades: Set initial video quality to large instead of default to avoid automatic ...@@ -10,6 +10,9 @@ Blades: Set initial video quality to large instead of default to avoid automatic
Blades: Add an upload button for authors to provide students with an option to Blades: Add an upload button for authors to provide students with an option to
download a handout associated with a video (of arbitrary file format). BLD-1000. download a handout associated with a video (of arbitrary file format). BLD-1000.
Studio: Add "raw HTML" editor so that authors can write HTML that will not be
changed in any way. STUD-1562
Blades: Show the HD button only if there is an HD version available. BLD-937. Blades: Show the HD button only if there is an HD version available. BLD-937.
Studio: Add edit button to leaf xblocks on the container page. STUD-1306. Studio: Add edit button to leaf xblocks on the container page. STUD-1306.
......
...@@ -20,11 +20,13 @@ Feature: CMS.Component Adding ...@@ -20,11 +20,13 @@ Feature: CMS.Component Adding
| Text | | Text |
| Announcement | | Announcement |
| Zooming Image | | Zooming Image |
| Raw HTML |
Then I see HTML components in this order: Then I see HTML components in this order:
| Component | | Component |
| Text | | Text |
| Announcement | | Announcement |
| Zooming Image | | Zooming Image |
| Raw HTML |
Scenario: I can add Latex HTML components Scenario: I can add Latex HTML components
Given I am in Studio editing a new unit Given I am in Studio editing a new unit
......
...@@ -63,6 +63,8 @@ def see_a_multi_step_component(step, category): ...@@ -63,6 +63,8 @@ def see_a_multi_step_component(step, category):
'<h2>ZOOMING DIAGRAMS</h2>', '<h2>ZOOMING DIAGRAMS</h2>',
'E-text Written in LaTeX': 'E-text Written in LaTeX':
'<h2>Example: E-text page</h2>', '<h2>Example: E-text page</h2>',
'Raw HTML':
'<p>This template is similar to the Text template. The only difference is',
} }
actual_html = world.css_html(selector, index=idx) actual_html = world.css_html(selector, index=idx)
assert_in(html_matcher[step_hash['Component']], actual_html) assert_in(html_matcher[step_hash['Component']], actual_html)
......
...@@ -5,7 +5,7 @@ Feature: CMS.HTML Editor ...@@ -5,7 +5,7 @@ Feature: CMS.HTML Editor
Scenario: User can view metadata Scenario: User can view metadata
Given I have created a Blank HTML Page Given I have created a Blank HTML Page
And I edit and select Settings And I edit and select Settings
Then I see only the HTML display name setting Then I see the HTML component settings
# Safari doesn't save the name properly # Safari doesn't save the name properly
@skip_safari @skip_safari
...@@ -47,6 +47,26 @@ Feature: CMS.HTML Editor ...@@ -47,6 +47,26 @@ Feature: CMS.HTML Editor
--></style> --></style>
""" """
Scenario: TinyMCE and CodeMirror preserve span tags
Given I have created a Blank HTML Page
When I edit the page
And type "<span>Test</span>" in the code editor and press OK
And I save the page
Then the page text contains:
"""
<span>Test</span>
"""
Scenario: TinyMCE and CodeMirror preserve math tags
Given I have created a Blank HTML Page
When I edit the page
And type "<math><msup><mi>x</mi><mn>2</mn></msup></math>" in the code editor and press OK
And I save the page
Then the page text contains:
"""
<math><msup><mi>x</mi><mn>2</mn></msup></math>
"""
Scenario: TinyMCE toolbar buttons are as expected Scenario: TinyMCE toolbar buttons are as expected
Given I have created a Blank HTML Page Given I have created a Blank HTML Page
When I edit the page When I edit the page
...@@ -57,7 +77,7 @@ Feature: CMS.HTML Editor ...@@ -57,7 +77,7 @@ Feature: CMS.HTML Editor
When I edit the page When I edit the page
And type "<img src="/static/image.jpg">" in the code editor and press OK And type "<img src="/static/image.jpg">" in the code editor and press OK
Then the src link is rewritten to "c4x/MITx/999/asset/image.jpg" Then the src link is rewritten to "c4x/MITx/999/asset/image.jpg"
And the code editor displays "<p><img src="/static/image.jpg" alt="" /></p>" And the code editor displays "<p><img src="/static/image.jpg" /></p>"
Scenario: Code format toolbar button wraps text with code tags Scenario: Code format toolbar button wraps text with code tags
Given I have created a Blank HTML Page Given I have created a Blank HTML Page
...@@ -69,3 +89,42 @@ Feature: CMS.HTML Editor ...@@ -69,3 +89,42 @@ Feature: CMS.HTML Editor
""" """
<p><code>display as code</code></p> <p><code>display as code</code></p>
""" """
Scenario: Raw HTML component does not change text
Given I have created a raw HTML component
When I edit the page
And type "<li>zzzz<ol>" into the Raw Editor
And I save the page
Then the page text contains:
"""
<li>zzzz<ol>
"""
And I edit the page
Then the Raw Editor contains exactly:
"""
<li>zzzz<ol>
"""
Scenario: Can switch from Visual Editor to Raw
Given I have created a Blank HTML Page
When I edit the component and select the Raw Editor
And I save the page
When I edit the page
And type "fancy html" into the Raw Editor
And I save the page
Then the page text contains:
"""
fancy html
"""
Scenario: Can switch from Raw Editor to Visual
Given I have created a raw HTML component
And I edit the component and select the Visual Editor
And I save the page
When I edit the page
And type "less fancy html" in the code editor and press OK
And I save the page
Then the page text contains:
"""
less fancy html
"""
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# pylint: disable=C0111 # pylint: disable=C0111
from lettuce import world, step from lettuce import world, step
from nose.tools import assert_in, assert_equal # pylint: disable=no-name-in-module from nose.tools import assert_in, assert_false, assert_true, assert_equal # pylint: disable=no-name-in-module
from common import type_in_codemirror, get_codemirror_value from common import type_in_codemirror, get_codemirror_value
CODEMIRROR_SELECTOR_PREFIX = "$('iframe').contents().find" CODEMIRROR_SELECTOR_PREFIX = "$('iframe').contents().find"
...@@ -18,9 +18,24 @@ def i_created_blank_html_page(step): ...@@ -18,9 +18,24 @@ def i_created_blank_html_page(step):
) )
@step('I see only the HTML display name setting$') @step('I have created a raw HTML component')
def i_created_raw_html(step):
world.create_course_with_unit()
world.create_component_instance(
step=step,
category='html',
component_type='Raw HTML'
)
@step('I see the HTML component settings$')
def i_see_only_the_html_display_name(step): def i_see_only_the_html_display_name(step):
world.verify_all_setting_entries([['Display Name', "Text", False]]) world.verify_all_setting_entries(
[
['Display Name', "Text", False],
['Editor', "Visual", False]
]
)
@step('I have created an E-text Written in LaTeX$') @step('I have created an E-text Written in LaTeX$')
...@@ -81,6 +96,10 @@ def check_link_in_link_plugin(step, path): ...@@ -81,6 +96,10 @@ def check_link_in_link_plugin(step, path):
@step('type "(.*)" in the code editor and press OK$') @step('type "(.*)" in the code editor and press OK$')
def type_in_codemirror_plugin(step, text): def type_in_codemirror_plugin(step, text):
# Verify that raw code editor is not visible.
assert_true(world.css_has_class('.CodeMirror', 'is-inactive'))
# Verify that TinyMCE editor is present
assert_true(world.is_css_present('.tiny-mce'))
use_code_editor( use_code_editor(
lambda: type_in_codemirror(0, text, CODEMIRROR_SELECTOR_PREFIX) lambda: type_in_codemirror(0, text, CODEMIRROR_SELECTOR_PREFIX)
) )
...@@ -131,6 +150,11 @@ def check_page_text(step): ...@@ -131,6 +150,11 @@ def check_page_text(step):
assert_in(step.multiline, world.css_find('.xmodule_HtmlModule').html) assert_in(step.multiline, world.css_find('.xmodule_HtmlModule').html)
@step('the Raw Editor contains exactly:')
def check_raw_editor_text(step):
assert_equal(step.multiline, get_codemirror_value(0))
@step('the src link is rewritten to "(.*)"$') @step('the src link is rewritten to "(.*)"$')
def image_static_link_is_rewritten(step, path): def image_static_link_is_rewritten(step, path):
# Find the TinyMCE iframe within the main window # Find the TinyMCE iframe within the main window
...@@ -199,3 +223,18 @@ def set_text_and_select(step, text): ...@@ -199,3 +223,18 @@ def set_text_and_select(step, text):
def select_code_button(step): def select_code_button(step):
# This is our custom "code style" button. It uses an image instead of a class. # This is our custom "code style" button. It uses an image instead of a class.
world.css_click(".mce-i-none") world.css_click(".mce-i-none")
@step('type "(.*)" into the Raw Editor$')
def type_in_raw_editor(step, text):
# Verify that CodeMirror editor is not hidden
assert_false(world.css_has_class('.CodeMirror', 'is-inactive'))
# Verify that TinyMCE Editor is not present
assert_true(world.is_css_not_present('.tiny-mce'))
type_in_codemirror(0, text)
@step('I edit the component and select the (Raw|Visual) Editor$')
def select_editor(step, editor):
world.edit_component_and_select_settings()
world.browser.select('Editor', editor)
<%! from django.utils.translation import ugettext as _ %> <%! from django.utils.translation import ugettext as _ %>
<div class="wrapper-comp-editor" id="editor-tab" data-base-asset-url="${base_asset_url}"> <div class="wrapper-comp-editor" id="editor-tab" data-base-asset-url="${base_asset_url}" data-editor="${editor}">
<section class="html-editor editor"> <section class="html-editor editor">
<div class="row"> <div class="row">
<textarea class="tiny-mce">${data | h}</textarea> % if editor == 'visual':
<textarea class="tiny-mce">${data | h}</textarea>
% endif
<textarea name="" class="edit-box">${data | h}</textarea>
</div> </div>
</section> </section>
</div> </div>
......
// HTML component editor: // HTML component editor:
.html-editor { .html-editor {
@include clearfix(); @include clearfix();
.CodeMirror { .CodeMirror {
@include box-sizing(border-box); @include box-sizing(border-box);
position: absolute; height: 435px;
top: 46px;
width: 100%;
height: 379px;
border: 1px solid #3c3c3c;
border-top: 1px solid #8891a1;
background: #fff;
color: #3c3c3c;
}
.CodeMirror-scroll {
height: 100%;
}
.editor-tabs {
top: 0 !important;
right: 10px;
z-index: 99;
} }
.is-inactive { .is-inactive {
display: none; display: none;
} }
} }
\ No newline at end of file
...@@ -36,6 +36,16 @@ class HtmlFields(object): ...@@ -36,6 +36,16 @@ class HtmlFields(object):
default=False, default=False,
scope=Scope.settings scope=Scope.settings
) )
editor = String(
help="Select Visual to enter content and have the editor automatically create the HTML. Select Raw to edit HTML directly. If you change this setting, you must save the component and then re-open it for editing.",
display_name="Editor",
default="visual",
values=[
{"display_name": "Visual", "value": "visual"},
{"display_name": "Raw", "value": "raw"}
],
scope=Scope.settings
)
class HtmlModule(HtmlFields, XModule): class HtmlModule(HtmlFields, XModule):
...@@ -113,6 +123,7 @@ class HtmlDescriptor(HtmlFields, XmlDescriptor, EditingDescriptor): ...@@ -113,6 +123,7 @@ class HtmlDescriptor(HtmlFields, XmlDescriptor, EditingDescriptor):
_context.update({ _context.update({
'base_asset_url': StaticContent.get_base_url_path_for_course_assets(self.location) + '/', 'base_asset_url': StaticContent.get_base_url_path_for_course_assets(self.location) + '/',
'enable_latex_compiler': self.use_latex_compiler, 'enable_latex_compiler': self.use_latex_compiler,
'editor': self.editor
}) })
return _context return _context
......
<div class="test-component">
<div class="wrapper-comp-editor" id="editor-tab" data-base-asset-url="/c4x/foo/bar/asset/" data-editor="visual">
<section class="html-editor editor">
<div class="row">
<textarea class="tiny-mce"><p>original visual text</p></textarea>
<textarea name="" class="edit-box">raw text</textarea>
</div>
</section>
</div>
</div>
<section class="html-edit">
<textarea class="tiny-mce">dummy text</textarea>
</section>
<div class="test-component">
<div class="wrapper-comp-editor" id="editor-tab" data-editor="raw">
<section class="html-editor editor">
<div class="row">
<textarea name="" class="edit-box">raw text</textarea>
</div>
</section>
</div>
</div>
...@@ -3,39 +3,32 @@ describe 'HTMLEditingDescriptor', -> ...@@ -3,39 +3,32 @@ describe 'HTMLEditingDescriptor', ->
window.baseUrl = "/static/deadbeef" window.baseUrl = "/static/deadbeef"
afterEach -> afterEach ->
delete window.baseUrl delete window.baseUrl
describe 'HTML Editor', -> describe 'Visual HTML Editor', ->
beforeEach -> beforeEach ->
loadFixtures 'html-edit.html' loadFixtures 'html-edit-visual.html'
@descriptor = new HTMLEditingDescriptor($('.html-edit')) @descriptor = new HTMLEditingDescriptor($('.test-component'))
it 'Returns data from Visual Editor if Visual Editor is dirty', -> it 'Returns data from Visual Editor if text has changed', ->
visualEditorStub = visualEditorStub =
isDirty: () -> true
getContent: () -> 'from visual editor' getContent: () -> 'from visual editor'
spyOn(@descriptor, 'getVisualEditor').andCallFake () -> spyOn(@descriptor, 'getVisualEditor').andCallFake () ->
visualEditorStub visualEditorStub
data = @descriptor.save().data data = @descriptor.save().data
expect(data).toEqual('from visual editor') expect(data).toEqual('from visual editor')
it 'Returns data from Visual Editor even if Visual Editor is not dirty', -> it 'Returns data from Raw Editor if text has not changed', ->
visualEditorStub = visualEditorStub =
isDirty: () -> false getContent: () -> '<p>original visual text</p>'
getContent: () -> 'from visual editor'
spyOn(@descriptor, 'getVisualEditor').andCallFake () -> spyOn(@descriptor, 'getVisualEditor').andCallFake () ->
visualEditorStub visualEditorStub
data = @descriptor.save().data data = @descriptor.save().data
expect(data).toEqual('from visual editor') expect(data).toEqual('raw text')
it 'Performs link rewriting for static assets when saving', -> it 'Performs link rewriting for static assets when saving', ->
visualEditorStub = visualEditorStub =
isDirty: () -> true
getContent: () -> 'from visual editor with /c4x/foo/bar/asset/image.jpg' getContent: () -> 'from visual editor with /c4x/foo/bar/asset/image.jpg'
spyOn(@descriptor, 'getVisualEditor').andCallFake () -> spyOn(@descriptor, 'getVisualEditor').andCallFake () ->
visualEditorStub visualEditorStub
@descriptor.base_asset_url = '/c4x/foo/bar/asset/'
data = @descriptor.save().data data = @descriptor.save().data
expect(data).toEqual('from visual editor with /static/image.jpg') expect(data).toEqual('from visual editor with /static/image.jpg')
it 'When showing visual editor links are rewritten to c4x format', -> it 'When showing visual editor links are rewritten to c4x format', ->
@descriptor = new HTMLEditingDescriptor($('.html-edit'))
@descriptor.base_asset_url = '/c4x/foo/bar/asset/'
visualEditorStub = visualEditorStub =
content: 'text /static/image.jpg' content: 'text /static/image.jpg'
startContent: 'text /static/image.jpg' startContent: 'text /static/image.jpg'
...@@ -45,3 +38,10 @@ describe 'HTMLEditingDescriptor', -> ...@@ -45,3 +38,10 @@ describe 'HTMLEditingDescriptor', ->
@descriptor.initInstanceCallback(visualEditorStub) @descriptor.initInstanceCallback(visualEditorStub)
expect(visualEditorStub.getContent()).toEqual('text /c4x/foo/bar/asset/image.jpg') expect(visualEditorStub.getContent()).toEqual('text /c4x/foo/bar/asset/image.jpg')
describe 'Raw HTML Editor', ->
beforeEach ->
loadFixtures 'html-editor-raw.html'
@descriptor = new HTMLEditingDescriptor($('.test-component'))
it 'Returns data from raw editor', ->
data = @descriptor.save().data
expect(data).toEqual('raw text')
class @HTMLEditingDescriptor class @HTMLEditingDescriptor
constructor: (element) -> constructor: (element) ->
@element = element; @element = element
@base_asset_url = @element.find("#editor-tab").data('base-asset-url') @base_asset_url = @element.find("#editor-tab").data('base-asset-url')
@editor_choice = @element.find("#editor-tab").data('editor')
if @base_asset_url == undefined if @base_asset_url == undefined
@base_asset_url = null @base_asset_url = null
# Create an array of all content CSS links to use in and pass to Tiny MCE. # We always create the "raw editor" so we can get the text out of it if necessary on save.
# We create this dynamically in order to support hashed files from our Django pipeline. @advanced_editor = CodeMirror.fromTextArea($(".edit-box", @element)[0], {
# CSS files that are to be used by Tiny MCE should contain the string "tinymce" so mode: "text/html"
# they can be found by the search below. lineNumbers: true
# We filter for only those files that are "content" files (as opposed to "skin" files). lineWrapping: true
tiny_mce_css_links = []
$("link[rel=stylesheet][href*='tinymce']").filter("[href*='content']").each ->
tiny_mce_css_links.push $(this).attr("href")
return
# This is a workaround for the fact that tinyMCE's baseURL property is not getting correctly set on AWS
# instances (like sandbox). It is not necessary to explicitly set baseURL when running locally.
tinyMCE.baseURL = "#{baseUrl}/js/vendor/tinymce/js/tinymce"
# This is necessary for the LMS bulk e-mail acceptance test. In that particular scenario,
# tinyMCE incorrectly decides that the suffix should be "", which means it fails to load files.
tinyMCE.suffix = ".min"
@tiny_mce_textarea = $(".tiny-mce", @element).tinymce({
script_url : "#{baseUrl}/js/vendor/tinymce/js/tinymce/tinymce.full.min.js",
theme : "modern",
skin: 'studio-tmce4',
schema: "html5",
# Necessary to preserve relative URLs to our images.
convert_urls : false,
content_css : tiny_mce_css_links.join(", "),
formats : {
# tinyMCE does block level for code by default
code: {inline: 'code'}
},
# Disable visual aid on borderless table.
visual: false,
plugins: "textcolor, link, image, codemirror",
codemirror: {
path: "#{baseUrl}/js/vendor"
},
image_advtab: true,
# We may want to add "styleselect" when we collect all styles used throughout the LMS
toolbar: "formatselect | fontselect | bold italic underline forecolor wrapAsCode | bullist numlist outdent indent blockquote | link unlink image | code",
block_formats: "Paragraph=p;Preformatted=pre;Heading 1=h1;Heading 2=h2;Heading 3=h3",
width: '100%',
height: '400px',
menubar: false,
statusbar: false,
# Necessary to avoid stripping of style tags.
valid_children : "+body[style]",
setup: @setupTinyMCE,
# Cannot get access to tinyMCE Editor instance (for focusing) until after it is rendered.
# The tinyMCE callback passes in the editor as a parameter.
init_instance_callback: @initInstanceCallback
}) })
if @editor_choice == 'visual'
@$advancedEditorWrapper = $(@advanced_editor.getWrapperElement())
@$advancedEditorWrapper.addClass('is-inactive')
# Create an array of all content CSS links to use in and pass to Tiny MCE.
# We create this dynamically in order to support hashed files from our Django pipeline.
# CSS files that are to be used by Tiny MCE should contain the string "tinymce" so
# they can be found by the search below.
# We filter for only those files that are "content" files (as opposed to "skin" files).
tiny_mce_css_links = []
$("link[rel=stylesheet][href*='tinymce']").filter("[href*='content']").each ->
tiny_mce_css_links.push $(this).attr("href")
return
# This is a workaround for the fact that tinyMCE's baseURL property is not getting correctly set on AWS
# instances (like sandbox). It is not necessary to explicitly set baseURL when running locally.
tinyMCE.baseURL = "#{baseUrl}/js/vendor/tinymce/js/tinymce"
# This is necessary for the LMS bulk e-mail acceptance test. In that particular scenario,
# tinyMCE incorrectly decides that the suffix should be "", which means it fails to load files.
tinyMCE.suffix = ".min"
@tiny_mce_textarea = $(".tiny-mce", @element).tinymce({
script_url : "#{baseUrl}/js/vendor/tinymce/js/tinymce/tinymce.full.min.js",
theme : "modern",
skin: 'studio-tmce4',
schema: "html5",
# Necessary to preserve relative URLs to our images.
convert_urls : false,
content_css : tiny_mce_css_links.join(", "),
formats : {
# tinyMCE does block level for code by default
code: {inline: 'code'}
},
# Disable visual aid on borderless table.
visual: false,
plugins: "textcolor, link, image, codemirror",
codemirror: {
path: "#{baseUrl}/js/vendor"
},
image_advtab: true,
# We may want to add "styleselect" when we collect all styles used throughout the LMS
toolbar: "formatselect | fontselect | bold italic underline forecolor wrapAsCode | bullist numlist outdent indent blockquote | link unlink image | code",
block_formats: "Paragraph=p;Preformatted=pre;Heading 1=h1;Heading 2=h2;Heading 3=h3",
width: '100%',
height: '400px',
menubar: false,
statusbar: false,
# Necessary to avoid stripping of style tags.
valid_children : "+body[style]",
# Allow any elements to be used, e.g. link, script, math
valid_elements: "*[*]",
extended_valid_elements: "*[*]",
invalid_elements: "",
setup: @setupTinyMCE,
# Cannot get access to tinyMCE Editor instance (for focusing) until after it is rendered.
# The tinyMCE callback passes in the editor as a parameter.
init_instance_callback: @initInstanceCallback
})
setupTinyMCE: (ed) => setupTinyMCE: (ed) =>
ed.addButton('wrapAsCode', { ed.addButton('wrapAsCode', {
title : 'Code block', title : 'Code block',
...@@ -109,6 +127,9 @@ class @HTMLEditingDescriptor ...@@ -109,6 +127,9 @@ class @HTMLEditingDescriptor
initInstanceCallback: (visualEditor) => initInstanceCallback: (visualEditor) =>
visualEditor.setContent(rewriteStaticLinks(visualEditor.getContent({no_events: 1}), '/static/', @base_asset_url)) visualEditor.setContent(rewriteStaticLinks(visualEditor.getContent({no_events: 1}), '/static/', @base_asset_url))
# Unfortunately, just setting visualEditor.isNortDirty = true is not enough to convince TinyMCE we
# haven't dirtied the Editor. Store the raw content so we can compare it later.
@starting_content = visualEditor.getContent({format:"raw", no_events: 1})
visualEditor.focus() visualEditor.focus()
getVisualEditor: () -> getVisualEditor: () ->
...@@ -120,6 +141,14 @@ class @HTMLEditingDescriptor ...@@ -120,6 +141,14 @@ class @HTMLEditingDescriptor
return @visualEditor return @visualEditor
save: -> save: ->
visualEditor = @getVisualEditor() text = undefined
text = rewriteStaticLinks(visualEditor.getContent({no_events: 1}), @base_asset_url, '/static/') if @editor_choice == 'visual'
visualEditor = @getVisualEditor()
raw_content = visualEditor.getContent({format:"raw", no_events: 1})
if @starting_content != raw_content
text = rewriteStaticLinks(visualEditor.getContent({no_events: 1}), @base_asset_url, '/static/')
if text == undefined
text = @advanced_editor.getValue()
data: text data: text
---
metadata:
display_name: Raw HTML
editor: raw
data: |
<p>This template is similar to the Text template. The only difference is
that this template opens in the Raw HTML editor rather than in the Visual
editor.</p>
<p>The Raw HTML editor saves your HTML exactly as you enter it.
You can switch to the Visual editor by clicking the Settings tab and
changing the Editor setting to Visual. Note, however, that some of your
HTML may be modified when you save the component if you switch to the
Visual editor.</p>
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<section class="outside-app"> <section class="outside-app">
<h1> <h1>
${_(u"There has been a 500 error on the {platform_name} servers").format( ${_(u"There has been a 500 error on the {platform_name} servers").format(
platform_name=u"<em>{}</em>".format(platform_name=settings.PLATFORM_NAME) platform_name=u"<em>{platform_name}</em>".format(platform_name=settings.PLATFORM_NAME)
)} )}
</h1> </h1>
<p> <p>
......
<%! from django.utils.translation import ugettext as _ %> <%! from django.utils.translation import ugettext as _ %>
<section class="html-editor editor"> <div class="wrapper-comp-editor" id="editor-tab" data-editor="${editor}">
<div class="row"> <section class="html-editor editor">
<textarea class="tiny-mce">${data | h}</textarea> <div class="row">
</div> % if editor == 'visual':
</section> <textarea class="tiny-mce">${data | h}</textarea>
% endif
<textarea name="" class="edit-box">${data | h}</textarea>
</div>
</section>
</div>
\ No newline at end of file
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