码迷,mamicode.com
首页 > 其他好文 > 详细

django-表单之手动渲染(五)

时间:2019-10-29 21:31:20      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:char   lis   value   style   sub   手动   href   table   form   

<!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-表单之手动渲染(五)

标签:char   lis   value   style   sub   手动   href   table   form   

原文地址:https://www.cnblogs.com/xiximayou/p/11761528.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!