Source: unbiased-coder.com

Is Django Becoming Obsolete
I have used Django a lot over the years. I’d say I used it since inception but I missed the first few months of its announcement which had core changes and the framework went through a lot at that time.

The truth is that the Django has been a stable project that has consistently grown over the years and trusted by a lot of great vendors out there.

# Find a bug in the Django framework # Submit a bug report to the Django community

# Create a ModelForm for the Post model from django import forms class PostForm(forms.ModelForm): class Meta: model = Post fields = ['title', 'body']

Related Articles