#22866: quoted class names in foreign key definition causes ValueError
--------------------------------+--------------------
     Reporter:  renatooliveira  |      Owner:  nobody
         Type:  Uncategorized   |     Status:  new
    Component:  Uncategorized   |    Version:  1.6
     Severity:  Normal          |   Keywords:
 Triage Stage:  Unreviewed      |  Has patch:  0
Easy pickings:  0               |      UI/UX:  0
--------------------------------+--------------------
 my scenario

 Ramiro, I CCed you because of this comment: ticket:10405#comment:46

 app_a/models.py
 {{{#!python
 class Model_A(models.Model):
     name = models.CharField(...)
 }}}

 app_b/models.py
 {{{#!python
 class Model_B(models.Model):
     field_a = models.ForeignKey('app_a.Model_A' ...)
 }}}

 app_b/forms.py

 {{{#!python
 from app_b.models import Model_B


 class FormModel_B(forms.ModelForm):

     class Meta:
         model = Model_B
 }}}

 On app_b/tests/test_forms.py I have

 {{{#!python
 from app_b.forms import FormModel_B
 }}}

 And it gives me a {{{ValueError}}}

 {{{ ValueError: Cannot create form field for 'field_a' yet, because its
 related model 'app_a.Model_A' has not been loaded yet }}}

 But when I just import Model_A on app_b/models.py file

 {{{#!python
 from app_a.models import Model_A


 class Model_B(models.Model):
     field_a = models.ForeignKey('app_a.Model_A' ...)
 }}}

 my settings.py

 {{{#!python
 INSTALLED_APPS = (
     ...
     'app_a',
     'app_b',
 }
 }}}

 It works.

 This is actually code from the project that I created to reproduce the
 behavior.

 https://github.com/renatooliveira/test_bug

 I'm willing to try fix this issue since it's accepted.


 Best Regards.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/22866>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/057.736b9faf457c5878bdba83c0c8088eb0%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to