class Meta:
labels = {'field_name': ''}
If tag = "", then an unnecessary colon is left
This is, of course, a trifle. But anyway...
--
Ticket URL: <https://code.djangoproject.com/ticket/33371>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
Old description:
> class AForm(forms.ModelForm):
>
> class Meta:
> labels = {'field_name': ''}
>
> If tag = "", then an unnecessary colon is left
>
> This is, of course, a trifle. But anyway...
New description:
{{{
class AForm(forms.ModelForm):
class Meta:
labels = {'field_name': ''}
}}}
If tag = "", then an unnecessary colon is left
This is, of course, a trifle. But anyway...
--
--
Ticket URL: <https://code.djangoproject.com/ticket/33371#comment:1>
* status: new => closed
* resolution: => needsinfo
Comment:
Thanks for the report, however I don't see any extra colon when rendering
a form. Can you be more precise? A sample project or reproducible scenario
would be helpful.
--
Ticket URL: <https://code.djangoproject.com/ticket/33371#comment:2>