django クリスピー フォームに変換したい次の HTML セグメントがあります。
<div class="span5">
<h3 class='offset1'>Select images</h3>
<div id='image-drop' class='dropzone span5 center'>
<p>Drag and drop photos and video here</p>
<p class='big'>+</p>
<p>Or click to add using the file browser</p>
</div>
</div>
タグを含める方法と
タグ?私はこれを試しました:
self.helper.layout = Layout(
Div(css_class='span5',
HTML("<h3 class='offset1'>Select Images</h3>"),
Div(css_id='image-drop',
css_class='dropzone span5 center',
HTML("<p>Drag and drop photos and video here</p><p class='big'>+</p><p>Or click to add using the file browser</p>")
)
)
)
しかし、これは SyntaxError: non-keyword arg after keyword arg --> HTML フィールドのある行を指していました。Div に HTML を含めて何か問題がありますか? 指定された HTML を翻訳するにはどうすればよいですか?