2

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 を翻訳するにはどうすればよいですか?

4

1 に答える 1

5

エラーメッセージは非常に明確ですね。

たとえば、内側のブロックはおそらく次のようになります ( **args* 拳、次に ***kwargs* ):

Div(
    HTML("<p>Drag and drop photos and video here</p><p class='big'>+</p><p>Or click to add using the file browser</p>"),
    css_id='image-drop',
    css_class='dropzone span5 center'
)
于 2013-01-10T21:10:38.673 に答える