object has no attribute ’save’
June 13, 08 byProblem Cause:
class ContactForm(models.Model):
Solution:
ModelForm only have save method
Form doesn’t have save method so
class ContactForm(forms.ModelForm):
class ContactForm(models.Model):
ModelForm only have save method
Form doesn’t have save method so
class ContactForm(forms.ModelForm):
: Cannot redeclare security_update() (previously declared in /home/freelap5/public_html/index.php:13) in /home/freelap5/public_html/index.php on line 27