Django 1.9.7
Could you help me with three questions about DetailView:
Why DetailView doesn't put form into the context whereas CreateView does? I mean it is very cumbersome to write a template where every field is shown separately like object.headline or object.content. In case of CreateView we just place {{ form.as_p }} into the template. Much more convenient. So, there must be some logic behind the scene that I can't feel because of lack of experience.
Is there a third party applications with ready to use template tags for DetailView? Or something else to automate this selection of fields to be displayed in the template.
Or should I just put a form myself in get_context_data?