自定义模板位置,修改mysite/settings.py文件的TEMPLATES,注意模板文件位置已经改变,否则会出错的
自定义静态文件位置,在static文件夹下放一张图片
访问:http://127.0.0.1:8000/static/img.jpg测试一下
修改一下templates/blog/titles.html文件
访问:http://127.0.0.1:8000/blog
因为自定义了模板文件位置,现在访问http:127.0.0.1:8000/admin是出错的,因为找不到对应文件
现在要找到两个文件 admin 和 registration,它们在django的安装目录下,就是安装django时的文件位置
把这两个文件复制一份到项目templates目录下
再次访问http:127.0.0.1:8000/admin
新建一个app:django-admin startapp account并配置mysite/settings.py
配置mysite/settings.py路由
account 目录中创建 urls .py
在account目录下创建一个表单类文件forms.py
在account/views.py中写user_login函数
在templates目录下创建account/login.html文件
启动项目:python manage.py runserver,访问http://127.0.0.1:8000/account/login
尝试一下登陆即可
在templates/titles.html文件加一个超链接跳转到登陆页,需要配置account/urls.py
添加app_name:'account'
访问:http://127.0.0.1:8000/blog就有登陆的跳转了
使用内置方法实现登陆,配置account/urls.py
在mysite/settings.py添加
登陆尝试一下即可
判断是否登陆,在templates/titles.html中添加
退出,在account/urls.py中添加
创建templates/account/logout.html
修改templates/blog/titles.html
测试一下,没有问题
实现简单注册,首先修改account/forms.py,增加注册表单
在account/views.py添加视图函数
在templates/account下创建register.html
在account/urls.py配置路由
测试:创建一个账号并登陆:访问http://127.0.0.1/8000/account/register
admin1登陆成功
现在在templates/blog/titles.html文件中添加一个能跳转到注册页面的链接
增加注册字段,在account/models.py文件中创建模型类
生成新的迁移文件
在account/forms.py添加表单类
修改account/views.py下的视图函数
修改templates/accoutn/register.html文件
访问http://127.0.0.1:8000/account/register,经过测试没有问题
新增后台管理(admin),在account/admin.py添加
访问http://127.0.0.1:8000/admin,增加了一个User profiles
找不到pdf的留言