Home
last modified time | relevance | path

Searched refs:chained_field (Results 1 – 12 of 12) sorted by relevance

/dports/www/py-django-smart-selects/django-smart-selects-1.5.9/docs/
H A Dusage.md30 chained_field="continent",
42 #### chained_field (required)
44 …he `chained_field` indicates the field on the same model that should be chained to. In the `Contin…
53 … of the chained model that corresponds to the model linked to by the `chained_field`. In the `Cont…
91 chained_field="publication",
117 chained_field="publication",
125 #### `chained_field` (required)
127 The `chained_field` indicates the field on the same model that should be chained to. In the `Public…
136 … of the chained model that corresponds to the model linked to by the `chained_field`. In the `Publ…
/dports/www/py-django-smart-selects/django-smart-selects-1.5.9/test_app/
H A Dmodels.py34 chained_field="continent",
41 chained_field="country",
55 chained_field="continent",
85 chained_field="publication",
97 chained_field="publication",
148 chained_field='client',
175 chained_field='kind',
214 chained_field='person',
/dports/www/py-django-smart-selects/django-smart-selects-1.5.9/test_app/migrations/
H A D0004_auto_20170309_0016.py31 …('tag', smart_selects.db_fields.ChainedForeignKey(auto_choose=True, chained_field='kind', chained_…
37 …field=smart_selects.db_fields.ChainedManyToManyField(chained_field='publication', chained_model_fi…
42 …field=smart_selects.db_fields.ChainedManyToManyField(chained_field='publication', chained_model_fi…
47 …field=smart_selects.db_fields.ChainedForeignKey(auto_choose=True, chained_field='continent', chain…
52 …field=smart_selects.db_fields.ChainedForeignKey(auto_choose=True, chained_field='continent', chain…
H A D0006_auto_20170707_2000.py50 …field=smart_selects.db_fields.ChainedManyToManyField(chained_field='publication', chained_model_fi…
55 …field=smart_selects.db_fields.ChainedManyToManyField(chained_field='client', chained_model_field='…
65 …field=smart_selects.db_fields.ChainedManyToManyField(chained_field='person', chained_model_field='…
H A D0002_book1_location1.py21 …oManyField(chained_model_field=b'publications', to='test_app.Writer', chained_field=b'publication'…
34 …edForeignKey(chained_model_field=b'continent', to='test_app.Country', chained_field=b'continent', …
H A D0001_initial.py47 …country', smart_selects.db_fields.ChainedForeignKey(auto_choose=True, chained_field=b'continent', …
73 …field=smart_selects.db_fields.ChainedManyToManyField(chained_field=b'publication', chained_model_f…
H A D0007_auto_20200207_1149.py26 …field=smart_selects.db_fields.ChainedForeignKey(auto_choose=True, chained_field='country', chained…
H A D0004_client_domain_website.py38 …('domains', smart_selects.db_fields.ChainedManyToManyField(chained_field=b'client', chained_model_…
/dports/www/py-django-smart-selects/django-smart-selects-1.5.9/smart_selects/
H A Dwidgets.py56 def __init__(self, to_app_name, to_model_name, chained_field, chained_model_field, argument
61 self.chained_field = chained_field
85 chained_field = '-'.join(name.split('-')[:-1] + [self.chained_field])
87 chained_field = self.chained_field
141 attrs["data-chainfield"] = chained_field
H A Ddb_fields.py46 def __init__(self, to, chained_field=None, chained_model_field=None, argument
76 self.chain_field = chained_field
147 def __init__(self, to, chained_field=None, chained_model_field=None, argument
184 self.chained_field = chained_field
248 'chained_field': self.chained_field,
H A Dtests.py38 chained_field='a_chained_field',
51 chained_field='a_chained_field',
H A Dform_fields.py12 def __init__(self, to_app_name, to_model_name, chained_field, chained_model_field, argument
18 'widget': ChainedSelect(to_app_name, to_model_name, chained_field, chained_model_field,