开发者

Django: publishing and unpublishing posts

开发者 https://www.devze.com 2023-03-28 12:59 出处:网络
I have a basic Django blogging application with the fields such as textfield, datetime, imagefield, slug etc. I want to have a feature whe开发者_如何学Gore I can publish and unpublish posts in the adm

I have a basic Django blogging application with the fields such as textfield, datetime, imagefield, slug etc. I want to have a feature whe开发者_如何学Gore I can publish and unpublish posts in the admin interface(with the help of checkbox). How can this be done?


Add a BooleanField that describes whether or not the post is published, and check the value of this field in your views.

0

精彩评论

暂无评论...
验证码 换一张
取 消