[Solved] How to add blog post and show post in Django web blog
This is rather a generic approach.I hope this helps. A widget is Django’s representation of an HTML input element. The widget handles the rendering of the HTML, and the extraction of data from a GET/POST dictionary that corresponds to the widget. You can specify a widget as : from django import forms class CommentForm(forms.Form): name … Read more