django-表单之手动渲染

Posted xiximayou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django-表单之手动渲染相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{{title}}</title>
    <style>
        .custom-textinput{
            border: 5px solid blue;
            border-radius: 5px;
        }
    </style>
    <link rel="stylesheet" href={% static css/index.css %}

</head>
<body>
    <!--{% include header.html%}-->
    <div class="content">
        <!--<h1>这是主界面</h1>-->
        <form action="" method="post">
            <table>
                <!--as_p,as_ul-->
                <!--{{forms.as_table}}-->
                <hr>
                <ul>
                    <li style="list-style-type: none">
                        <span style="color: blue">{{forms.username.label}} : </span>
                        <span>{{forms.username}}</span>
                        <span style="margin-left: 10px">{{forms.username.help_text}}</span>
                    </li>
                </ul>
                <hr>
                <tr>
                    <td><input type="submit" value="submit" name="submit"></td>
                </tr>
            </table>
        </form>
        <!--{% block content %}-->
        <!--{% endblock %}-->
    </div>
    <!--{% include footer.html%}-->
</body>
</html>

技术图片

 

以上是关于django-表单之手动渲染的主要内容,如果未能解决你的问题,请参考以下文章

django表单

Django 之 form表单

如何手动渲染设置了初始值的表单域?

Django中Form表单之字段详解

Google App Engine 渲染和 Django 表单

Django---form表单的应用渲染