這裏是我的代碼:創建我的第一個Django應用
from django.db import models
from django.utils.encoding import smart_unicode
class SignUp(models.Model):
first_name = models.CharField(max_length=120, null=True, blank=True)
last_name = models.CharField(max_length=120, null=True, blank=True)
email = models.EmailField()
timestamp = models.DateTimeField(auto_now_add=True, auto_now=False)
updated = models.DateTimeField(auto_now_add=False, auto_now=True)
def __unicode__(self):
return smart_unicode(self.email)
這裏就是我得到。請幫助謝謝你。
updated = models.DateTimeField(auto_now_add=False, auto_now=True)
^
IndentationError:取消縮進不匹配任何外部縮進級別
嗨。 python是具有很強識別策略的語言。剛剛閱讀這個http://legacy.python.org/dev/peps/pep-0008/ –