Override label in Django Forms
问题 I have 3 sections with identical fields, except for label on "title" field. For all of them I'm using same Django Form. In views I have: def get(self): context = self.CONTEXT_CLASS(self.MODEL_CLASS) context.messages = self.get_messages() context.section1 = InvoiceContentForm() context.section2 = InvoiceContentForm() context.section3 = InvoiceContentForm() self.render_jinja('templates/invoice/add_edit.html', context.as_dict) My form: class InvoiceContentForm(forms.Form): """Form for content of