既に入力されているフィールドをフォームのクエリとして機能させるのに問題があります。フィールドをレンダリングするために ajax-select を使用しています。
フォーム.py
class FormMakeOccurrence(forms.ModelForm):
class Meta:
model = ManageOccurrence
fields = ('attribute', 'item', 'place')
place = make_ajax_field(ManageOccurrence,'place','places', help_text=None)
typeplace = make_ajax_field(TypePlace,'name','tipos_lugares', help_text=None)
quarter = make_ajax_field(Quarter,'name','blocos', help_text=None)
ルックアップ.py
class PlaceLookup(LookupChannel):
model = Place
def get_query(self,q,request):
return Place.objects.filter(Q(name__icontains=q) | Q(typePlace__name__exact="AN FILLED FIELD") | Q(quarter__name__exact="AN FILLED FIELD"))
class TypePlaceLookup(LookupChannel):
model = TypePlace
def get_query(self,q,request):
return TypePlace.objects.filter(Q(name__icontains=q)).order_by('name')
models.py
class ManageOccurrence(models.Model):
attribute = models.ForeignKey(Attribute)
item = models.ForeignKey(TypeItem)
place = models.ForeignKey(Place)
... other fields
class Place(models.Model):
name = models.CharField(max_length=30)
typePlace = models.ForeignKey(TypePlace)
quarter = models.ForeignKey(Quarter)
だから私は、これを機能させるための良い習慣は何かを理解しようとしています.
最初に四半期を埋める必要があるため、typePlace. 正しい場所に到達するには、正しい属性に到達して、正しいアイテムを埋めます。