#7749 closed (duplicate)
local flavor import example bug
| Reported by: | Mihai Damian | Owned by: | nobody |
|---|---|---|---|
| Component: | Documentation | Version: | dev |
| Severity: | Keywords: | localflavor | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
This example won't work as expected:
from django.contrib.localflavor import fr
class MyForm(forms.Form):
my_french_phone_no = fr.forms.FRPhoneNumberField()
as module fr doesn't appear to have a forms object.
You would need something like
from django.contrib.localflavor.fr import forms as fr_forms
or
import forms
in init.py
Valid for all other localflavor modules
Note:
See TracTickets
for help on using tickets.
#7685