当前位置:   article > 正文

django 前端设计文件(模板语法)_django前端模板

django前端模板

前言

我们在上一节中基本介绍了django的配置,下面一节,我们开始使用django的前端模版做一个前端项目

没学过django模版的点这里:菜鸟教程-django前端模版

一、Django 模版是什么?

模板是一个文本,用于分离文档的表现形式和内容。注意:和jsp模版不一样,jsp可以使用java代码编写程序,但是django模板不可以,他使用固定的语法进行前后端交互

二、使用模板创建文件

1.0 在templates文件夹下创建page文件夹

 

1.1 login.html代码

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. html {
  13. height: 100%;
  14. }
  15. body {
  16. height: 100%;
  17. }
  18. .container {
  19. height: 100%;
  20. background-image: linear-gradient(to right, #fbc2eb, #a6c1ee);
  21. }
  22. .login-wrapper {
  23. background-color: #fff;
  24. width: 358px;
  25. height: 588px;
  26. border-radius: 15px;
  27. padding: 0 50px;
  28. position: relative;
  29. left: 50%;
  30. top: 50%;
  31. transform: translate(-50%, -50%);
  32. }
  33. .header {
  34. font-size: 38px;
  35. font-weight: bold;
  36. text-align: center;
  37. line-height: 200px;
  38. }
  39. .input-item {
  40. display: block;
  41. width: 100%;
  42. margin-bottom: 20px;
  43. border: 0;
  44. padding: 10px;
  45. border-bottom: 1px solid rgb(128, 125, 125);
  46. font-size: 15px;
  47. outline: none;
  48. }
  49. .input-item:placeholder {
  50. text-transform: uppercase;
  51. }
  52. .btn {
  53. text-align: center;
  54. padding: 10px;
  55. width: 100%;
  56. margin-top: 40px;
  57. background-image: linear-gradient(to right, #a6c1ee, #fbc2eb);
  58. color: #fff;
  59. }
  60. .msg {
  61. text-align: center;
  62. line-height: 88px;
  63. }
  64. a {
  65. text-decoration-line: none;
  66. color: #abc1ee;
  67. }
  68. </style>
  69. </head>
  70. <body>
  71. <div class="container">
  72. <div class="login-wrapper">
  73. <div class="header">Login</div>
  74. <div class="form-wrapper">
  75. <form action="/login_entry" method="get">
  76. <input type="text" name="username" placeholder="username" class="input-item">
  77. <input type="password" name="password" placeholder="password" class="input-item">
  78. <input type="submit" value="搜索" class="btn">
  79. </form>
  80. </div>
  81. <div class="msg">
  82. Don't have account?
  83. <a href="#">Sign up</a>
  84. </div>
  85. </div>
  86. </div>
  87. </body>
  88. </html>

1.2 login界面

 

2.main主页(BookBar.html+BookTable.html 注意他们统一路径)

BookBar.html和BookTable.html,使用了模板语法的include,后端没有运行时,不会出现数据


 3.添加数据主页(insertBook.html)

 代码:

  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>Insert title here</title>
  5. </head>
  6. <style>
  7. .main{
  8. margin-top:10px;
  9. margin-left: 300px;
  10. font-size: 15px; /* 字体放大,让页面可滚动 */
  11. padding: 0px 10px;
  12. text-align: center;
  13. }
  14. .nav_v{
  15. /* 定义宽度 */
  16. margin-top:30px;
  17. /*display内嵌,代表文字和div成为一体*/
  18. display: inline-block;
  19. }
  20. .divc{
  21. width:300px;
  22. height:100%;
  23. text-align: center;
  24. position: fixed;
  25. left: 0;
  26. background-color: #9fc5e8;
  27. }
  28. .box{
  29. height: 100%;
  30. overflow: hidden;
  31. }
  32. input[type=text], select {
  33. width: 90%;
  34. padding: 12px 20px;
  35. margin: 8px 0;
  36. display: inline-block;
  37. border: 1px solid #ccc;
  38. border-radius: 4px;
  39. box-sizing: border-box;
  40. }
  41. input[type=submit] {
  42. width: 90%;
  43. background-color: #4CAF50;
  44. color: white;
  45. padding: 14px 20px;
  46. margin: 8px 0;
  47. border: none;
  48. border-radius: 4px;
  49. cursor: pointer;
  50. }
  51. input[type=submit]:hover {
  52. background-color: #45a049;
  53. }
  54. table {
  55. border-collapse: collapse;
  56. width: 100%;
  57. text-align: center;
  58. margin-top: 5px;
  59. }
  60. td {
  61. height:40px;
  62. padding: 8px;
  63. border-bottom: 1px solid #ddd;
  64. text-align: center;
  65. }
  66. .nv:hover {
  67. background-color:#f5f5f5;}
  68. .vt{
  69. color:white;
  70. height:50px;
  71. background-color:#6fa8dc;
  72. }
  73. a {
  74. width: 90%;
  75. padding: 12px 20px;
  76. margin: 8px 0;
  77. display: inline-block;
  78. border: 1px solid #ccc;
  79. border-radius: 4px;
  80. box-sizing: border-box;
  81. color: black;
  82. }
  83. a:link{
  84. text-decoration:none; /* 指正常的未被访问过的链接*/
  85. }
  86. a:visited{
  87. text-decoration:none; /*指已经访问过的链接*/
  88. }
  89. a:active{
  90. text-decoration:none;/* 指正在点的链接*/
  91. }
  92. a:hover {
  93. background-color:#f5f5f5;
  94. }
  95. </style>
  96. <body>
  97. <div class="divc">
  98. <form action="/insertBook" method="get">
  99. <label >bookno</label>
  100. <input type="text" name="bookno" placeholder="Your bookno...">
  101. <label >bookname</label>
  102. <input type="text" name="bookname" placeholder="Yourbookname...">
  103. <label >author</label>
  104. <input type="text" name="author" placeholder="Your author...">
  105. <label >publisher</label>
  106. <input type="text" name="publisher" placeholder="Your publisher...">
  107. <label >publishyear</label>
  108. <input type="text" name="publishyear" placeholder="Your publishyear...">
  109. <label >price</label>
  110. <input type="text" name="price" placeholder="Your price...">
  111. <label >state</label>
  112. <!-- <input type="text" id="fname" name="state" placeholder="Your state...">-->
  113. <select name="state" >
  114. <option value="借出">借出</option>
  115. <option value="未借出">未借出</option>
  116. </select>
  117. <label >bookstore</label>
  118. <input type="text" name="bookstore" placeholder="Your bookstore...">
  119. <input type="submit" value="Submit">
  120. </form>
  121. </div>
  122. <div class="box">
  123. <div class="main" id="test">
  124. <div style="text-align: center;">
  125. <table>
  126. <tr class="vt">
  127. {% for i in books_keys %}
  128. <td>{{i}}</td>
  129. {%endfor%}
  130. </tr>
  131. {% for i in books_values %}
  132. <tr>
  133. <td>{{i.0}}</td>
  134. <td>{{i.1}}</td>
  135. <td>{{i.2}}</td>
  136. <td>{{i.3}}</td>
  137. <td>{{i.4}}</td>
  138. <td>{{i.5}}</td>
  139. <td>{{i.6}}</td>
  140. <td>{{i.7}}</td>
  141. </tr>
  142. {%endfor%}
  143. </table>
  144. </div>
  145. </div>
  146. </div>
  147. </body>
  148. </body>
  149. </html>

总结

以上就是今天要讲的内容,本文仅仅简单介绍了模板的使用。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/73809
推荐阅读
相关标签
  

闽ICP备14008679号