tzangms

Results 16 comments of tzangms

@sastred I've no problem with the code, looks great! :D

Hi @zoner14 I will get this pull request merged and release tomorrow. I just get back from release a new product of my company.

@diopib @zoner14 Why not just turn label off by setting it in Form? Like this ``` field = forms.CharField(label="") ``` though ModelForm will be a little bit more complex

@diopib In Django 1.6, it allows you to override `labels` in ModelForm, like this ``` class AuthorForm(ModelForm): class Meta: model = Author labels = { 'field_name: "", } ``` I...

沒去研究過她的 pattern, 但應該是可以才是, 目前試過幾個都沒問題

但是複製網址不是比較快?

好, 既然都開 issue 了!

@Nivl which version of Django are you using?

@Nivl Nope, I just try to add a hidden field with this line below, but I didn't see any label appear ``` hidden_field = forms.CharField(widget=forms.HiddenInput) ``` is something like this?

Got it, I will test that, and I should improve the example project for testing `modelformset_factory`