Re: Hi

2020-06-05 Thread S K
It is not that important. If you have any specific settings in your earlier pycharm projects click on first one. Or if you have settings in separate config file locate that finally you can choose not to import anything. On Fri, 5 Jun, 2020, 11:52 am Pawan Goswami, wrote: > Please kindly help me

Re: Possible Django bug I am considering raising

2020-06-05 Thread 'OwlHoot' via Django users
On Thursday, 4 June 2020 23:45:53 UTC+1, Tim Graham wrote: You can try to find the commit that introduced the issue: > https://docs.djangoproject.com/en/dev/internals/contributing/triaging-tickets/#bisecting-a-regression > I'm happy to try and do this, i.e. produce a simple test case that fail

How to add entries dynamically

2020-06-05 Thread 'MH' via Django users
Hi I am coding a personal cookbook just for fun. On one site I want to be able to enter the ingredients, including the corresponding amount. So, I don't want to put all of that in one textarea, but in separate fields, so that I could recalculate the ingredient's amount if I have to cook for mo

Re: Possible Django bug I am considering raising

2020-06-05 Thread René Fleschenberg
Hi, the code you posted on stackoverflow is not sufficient to reproduce the problem. It would be good to provide a minimal reproducible example (see also https://stackoverflow.com/help/minimal-reproducible-example). Regards, René -- You received this message because you are subscribed to the Go

Re: How to add entries dynamically

2020-06-05 Thread Andréas Kühne
Hi, This is a fairly common practice - I found this: https://dev.to/zxenia/django-inline-formsets-with-class-based-views-and-crispy-forms-14o6 When googling for "inline formsets" because that's what you want. You can of course choose some other tutorial - but I think this one explains it ok. You

Re: Possible Django bug I am considering raising

2020-06-05 Thread Ramiro Morales
Remember you can not juat open/report an issue and bisect the git commit which could have introduced the change in behavior, but also, if it gets confirmed as a real bug, you can fix it yourself so to not delay yourself in your current project. With the nice side effect that the fix will benefit ma

Re: How to add entries dynamically

2020-06-05 Thread 'MH' via Django users
Thank you. I will look into that :) On Friday, June 5, 2020 at 3:23:21 PM UTC+2, Andréas Kühne wrote: > > Hi, > > This is a fairly common practice - I found this: > > https://dev.to/zxenia/django-inline-formsets-with-class-based-views-and-crispy-forms-14o6 > > When googling for "inline formsets" b

Re: Django IIS windows

2020-06-05 Thread Mehdi Baneshi
asp.net iis c# django ubuntu python On Fri, Jun 5, 2020 at 8:13 AM wrote: > This guy has explained it all and that too step by step. May be you could > refer to this link – > > > > > https://www.mattwoodward.com/2016/07/23/running-a-django-application-on-windows-server-2012-with-iis/ > > > > Tha

How to convert the static image files of a readymade template to dynamic

2020-06-05 Thread Rabbi Rabbi
[image: Annotation 2020-06-05 124726.png] Please help me to fix this. Do I need to use a double quotation before and after the .jpg link? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving email

Validation always True for CharField but not with DateField in FormSet

2020-06-05 Thread Rookie
StackOverflow: https://stackoverflow.com/questions/62206149/validation-always-true-blank-false-for-charfield-but-not-with-datefield I have an inlineformset_factory containing a field. When this field is a CharField (blank=False) and I run is_valid() on the formset, True is always returned even

RE: How to convert the static image files of a readymade template to dynamic

2020-06-05 Thread Vishesh Mangla
First of all, if you will use .css file, it would be better. In that you can include image the usual way.But still if you would like it as inline element thenn use “...{% url ‘’ %}...”. Mind the single commas and double commas.Sent from Mail for Windows 10 From: Rabbi RabbiSent: 05 June 2020 20:57T

django tables 2 - delete column and delete_item for inherited tables

2020-06-05 Thread Nader Elsisi
I have just posted https://stackoverflow.com/questions/62218886/django-tables-2-delete-column-and-delete-item-for-inherited-tables and didn't get any feedback yet. So I appreciate anyone who can help me about passing data. I want to have one abstract function for all my tablelists (one for ea

Re: How to convert the static image files of a readymade template to dynamic

2020-06-05 Thread Gabriel Araya Garcia
..and... why you don't try make theses things that you are asking ? El 12:03 Vie Jun 5, 2020, Vishesh Mangla escribió: > First of all, if you will use .css file, it would be better. In that you > can include image the usual way. > > But still if you would like it as inline element thenn use “...

How to set different labels in django DateRangeWidget

2020-06-05 Thread Benedict Uwazie
I have a form in my project and I want to display a start and stop label on my templates, what I mean by that is I want the start label to be next to start dateinput and stop label to be next to stop dateinput below are my codes. *filter.py* *from django_filters import widgetsimport dja