asawilliams
asawilliams

Reputation: 2938

How to Access model from Form template in Django

I have a form that edits a model. In the template though I would like to access the model. Is this possible and how can I accomplish this?

Upvotes: 1

Views: 607

Answers (1)

Kriplins
Kriplins

Reputation: 301

{{ model_form._meta.model }}

Upvotes: 2

Related Questions