MehdiDRISSIB

Results 4 issues of MehdiDRISSIB

Hello I can't found all countries in CountryInfo. Here is the list of countries code I haven't found: AD, AQ, MM, BQ, CW, BV, AX, TC, VG, VI, UM, ME,...

Hello I have this field in my Product Model: ` translations = TranslatedFields( name=models.CharField( max_length=256, unique=True, verbose_name=_('Name'), help_text=_("Enter a descriptive name for your product. This will be its title in...

Hello, Is there is any way to show all details of each field in TranslatedFieldsField in serializer in OPTIONS request ? Currently, when calling OPTIONS request, I have : ```...

Hello I created dynamic filters in my filterset like this: ``` class ProductFilter(FilterSet): price = django_filters.NumericRangeFilter(field_name="inventory__default_price", lookup_expr='lt', label=_('price'), method='get_product_price_range') inspiration_country = django_filters.MultipleChoiceFilter(choices=countries, field_name=_("Inspiration country"), lookup_expr='in', method='get_inspiration_countries', label=_('inspiration country')) category_hierarchy =...