Hellnar
Hellnar

Reputation: 64803

Django: Best way to handle multiselect US state selection

What is the best way to include in a model to save multi-select US states? I need a user to select several states and save this data in a model (via form OR modelform ).

I tried LocalFlavor USStateField model it doesn't seem to work for me since I can't call it like a regular model.

Upvotes: 1

Views: 210

Answers (1)

thikonom
thikonom

Reputation: 4267

This django app i've written may help you.

Upvotes: 1

Related Questions