f4nt

725
Reputation
78 views

Registered User

Name f4nt
Member for 1 year
Seen yesterday
Website
Location US
Age 25

Currently working at Imaginary Landscape in Chicago, IL as a Python/Django developer. I generally release all my side projects as open source. You can find them at:

  • http://github.com/f4nt/djtracker
  • http://github.com/f4nt/django-yaba

I also try to contribute back to open source projects when possible. I've made some (generally small) commits to the following:

  • http://github.com/digi604/django-cms-2.0
  • http://github.com/imagescape/iscape-djangonews
  • http://github.com/imagescape/iscape-jobboard
  • http://github.com/Poromenos/apache-config
  • http://github.com/thauber/django-schedule

Nov
21
comment pysvn with svn+ssh
I think that's about the best I can hope for probably.
Nov
20
asked pysvn with svn+ssh
Oct
14
answered Django: How do I make fields non-editable by default in an inline model formset?
Sep
18
awarded  Yearling
Aug
19
answered Django RSS Feed Problems
Aug
19
asked Django RSS Feed Problems
Aug
12
comment Django ModelForm CheckBox Widget
Got it! Thank you soooooo much for your help. Formatting is gunna hose it, but here's the fix: self.fields['media_type'].widget = forms.CheckboxSelectMultiple(choices=self.fields['media_type'].choices)
Aug
12
comment Django ModelForm CheckBox Widget
The HTML of the form is rather customized, so I have to output each field individually. The odd part is that if I don't override it, it works fine. I override it, and it doesn't render, but the choices are there.
Aug
12
comment Django ModelForm CheckBox Widget
well I can see the choices showing up properly if I dump out the contents of the form. There must be something wrong in my templates I guess. Certain widgets show fine, but this one doesn't. Not sure why yet.
Aug
12
comment Django ModelForm CheckBox Widget
gah.. formatting got hosed...
Aug
12
comment Django ModelForm CheckBox Widget
Well I wasn't doing it right, so thanks for setting me straight there, however now I have this: in Models.py: media_type = models.ManyToManyField(MediaChoice) in Forms.py: def __init__(self, *args, **kwargs): super(MediaContactForm, self).__init__(*args, **kwargs) self.fields['media_type'].widget = forms.CheckboxSelectMultiple()
Aug
12
comment Django ModelForm CheckBox Widget
Also, fwiw, that doesn't seem to work. The field renders blank when I use CheckBoxSelectMultiple form. If I use MultipleChoiceField, with the Checkbox widget that sorta works, but only if I supply the form with a list of choices. Then I have to go mapping data back with overriden clean function. Maybe that's the correct way, but it "feels" wrong, and typically when something "feels" wrong, it is. Just trying to verify I'm not overdoing it here.
Aug
12
comment Django ModelForm CheckBox Widget
Thanks for the tip. Didn't want to use ManyToMany because I'd be creating about 6 models for information that will always be static. Seemed unnecessary.
Aug
12
asked Django ModelForm CheckBox Widget
Jul
6
answered How to make custom PhotoEffects in Django Photologue?
Jul
5
comment Django Database Caching
Was a typo, sorry. Corrected it
Jul
5
revised Django Database Caching
createcachetable, not syncdb.. bad typo
Jul
5
asked Django Database Caching
Jun
14
comment django for loop counter break
So, there's all my options, and then there's your blatantly obvious one that I've been overlooking. Thanks for the tip, saves me a ton of trouble!
Jun
14
asked django for loop counter break