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

django搭建Bootstrap常用问题解决方法

时间:2015-09-18 13:53:15      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

1、进入页面,提示Creating a ModelForm without either the ‘fields‘ attribute or the ‘exclude‘时

解决方法:打开forms.py文件,修改如下:

class TestModelForm(forms.ModelForm):
    class Meta:
        model = User
        #model = Author
        fields = "__all__"

django搭建Bootstrap常用问题解决方法

标签:

原文地址:http://www.cnblogs.com/jinjiangongzuoshi/p/4818916.html

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