Re: Using a RadioSelect widget with ModelChoiceField

2021-02-05 Thread Siarhei Siarhei
https://stackoverflow.com/questions/14541074/empty-label-choicefield-django суббота, 6 февраля 2021 г. в 06:31:52 UTC+3, Matt Rowbottom: > Hi wne > > Using `to_field_name` changes the value of the options/inputs, but doesn't > seem to have any effect on whether a blank option is available. Usi

Re: Using a RadioSelect widget with ModelChoiceField

2021-02-05 Thread Matt Rowbottom
Hi wne Using `to_field_name` changes the value of the options/inputs, but doesn't seem to have any effect on whether a blank option is available. Using `required=False` should provide a blank option. Below is a pic of how it's rendering. Animal Radio is missing a blank option. [image: Scree

Re: Using a RadioSelect widget with ModelChoiceField

2021-02-05 Thread Siarhei Siarhei
to_field_name="name", пятница, 5 февраля 2021 г. в 17:15:27 UTC+3, Matt Rowbottom: > Hello. I think I've found a bug. > > Prior to Django v3.1, both of the fields in the following form would be > rendered with an empty option, labelled as '-': > > ``` > from django import forms > from .

ERR_CONNECTION_REFUSED via localhost access

2021-02-05 Thread jagder
I have no idea my problem is fit in here "Django user community", however I tried to send question. I made dev environment under below. # Container is Docker container. [image: background.jpg] I made 1 server for backend "Django" in container. I made 3 server for frontend "Flask"(for test), "no

ERR_CONNECTION_REFUSED via localhost access

2021-02-05 Thread jagder
I have no idea my problem is fit in here "Django user community", however I tried to send question. I made dev environment under below. # Container is Docker container. [image: background.jpg] I made dev environment under below. # Container is Docker container. background.jpg I made 1 server f

django display

2021-02-05 Thread Rajat Saraf
Django view function is not display on server. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion

Using a RadioSelect widget with ModelChoiceField

2021-02-05 Thread Matt Rowbottom
Hello. I think I've found a bug. Prior to Django v3.1, both of the fields in the following form would be rendered with an empty option, labelled as '-': ``` from django import forms from .models import Animal class AnimalForm(forms.Form): animal_select = forms.ModelChoiceField(