博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pd的django To Do List教程-----3:模板的建立
阅读量:5075 次
发布时间:2019-06-12

本文共 2334 字,大约阅读时间需要 7 分钟。

---恢复内容开始---

1:在app下建立static文件夹并且放入bootstrap文件包以及一个写好的css文件style.css。文件目录如下:

  style.css代码:

 

1 .form-control { 2 display: inline-block; 3 } 4 .add_button { 5 margin: 10px 0px 10px 0px; 6 } 7 .checkbox { 8 margin-top: 20px; 9 }10 .completed_item {11 text-decoration: line-through;12 }13 h1 {14 display: inline-block;15 color: #292b33;16 }17 body {18 background-color: #f6f6f6;19 }20 .text_holder {21 display: block;22 max-width: 100%;23 word-wrap: break-word;24 }25 #main {26 margin-top: 150px;27 background-color: #ffffff;28 border-radius: 5px;29 width: 50%;30 border: 1px solid #545454;31 }
View Code

 

 

1:在与project同级的目录下建立文件夹templates(若用pycharm则已经建立完毕),在templates文件夹下建立index.html文件

1  2  3  4     
5 {% load extra %} #后面过滤器的引入,这儿先不管 6 {% load staticfiles %}   #引入static文件(关于settings.py中的static路径查找问题pycharm会自动解决,不需要设置) 7 8
 #注意这儿以及下面的路径的引入方式 9
10
11 12 22 23 24 25 26
27

ToDoList

28
29
33
34
35
    36 {% for content in contents %}37
  1. 38
    39 {
    { content.content }}----{
    { content.time|Stime }} #Stime为自定义过滤器,后面再介绍40
    41
    42
    43
    44
    45
    46
    47
    48
    49
  2. 50 {% endfor %}51
52 53
54
55 {% if contents.has_previous %}56 previous57 {% endif %}58 59 page{
{ contents.number }} of {
{ contents.paginator.num_pages }}60
61 {% if contents.has_next %}62 next63 {% endif %}64
65
66 67
68 69 70

 

到此模板部分就完成了,模板中的部分东西会放到下一章视图里面讲解,有些地方不明了请不要着急

 

转载于:https://www.cnblogs.com/pengsixiong/p/4886943.html

你可能感兴趣的文章
Ajax中文乱码问题解决方法(服务器端用servlet)
查看>>
会计电算化常考题目一
查看>>
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
bcb ole拖拽功能的实现
查看>>
生活大爆炸之何为光速
查看>>
bzoj 2456: mode【瞎搞】
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
[GraphQL] Reuse Query Fields with GraphQL Fragments
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
两种最常用的Sticky footer布局方式
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>