Re: Error while trying to connect latest Dango with MSSQL

2019-09-17 Thread 'Amitesh Sahay' via Django users
What is the error message? If the subject line you are talking about, its very generic. please be specific. Regards, Amitesh On Wednesday, 18 September, 2019, 02:06:03 am IST, Praveen Kumar wrote: Hi All, Just I have updated the latest version of Dango. But now I'm getting error

Re: Raju | ITC Infotech - Looking for Backend Developers (Python/Django ORM - New York City )

2019-09-17 Thread Sipum
Hi Raju, I m interested but can remote possible as currently I m in India? Thank you Regards Sipum On Wed, 18 Sep, 2019, 2:06 AM Raju N Somanna, wrote: > Hi All > > I've an immediate need for Backend Developers (*Python/Django ORM* - New > York City) with my client in NYC. As the title

Excluding Directories from the autoreloader

2019-09-17 Thread J.D. Corbin
Is it possible in Django>=2.2 to exclude directories (unwatch) from the autoreloader? I have some python modules that are being created in the file system and want to be able to exclude the directories those are in so they don't trigger the Application to reload when in dev/debug mode.

Raju | ITC Infotech - Looking for Backend Developers (Python/Django ORM - New York City )

2019-09-17 Thread Raju N Somanna
Hi All I've an immediate need for Backend Developers (*Python/Django ORM* - New York City) with my client in NYC. As the title suggests my team is looking for Python/Django specialist, someone who is good experience on ORM. Please do let me know if you have any from your contacts/references

Error while trying to connect latest Dango with MSSQL

2019-09-17 Thread Praveen Kumar
Hi All, Just I have updated the latest version of Dango. But now I'm getting error message. Please suggest me. -- 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

Re: reg: Issue while rendering the page

2019-09-17 Thread 'Amitesh Sahay' via Django users
Below is the snippet of my project tree:: Regards, Amitesh Sahay91-750 797 8619 On Wednesday, 18 September, 2019, 12:58:57 am IST, Amitesh Sahay wrote: Hello Users,  I am building an app called "SHOP". For some very wired reason I am getting below

reg: Issue while rendering the page

2019-09-17 Thread 'Amitesh Sahay' via Django users
Hello Users,  I am building an app called "SHOP". For some very wired reason I am getting below error: ValueError at /shop/ The 'image' attribute has no file associated with it. | Request Method: | GET | | Request URL: |

Re: Django FastCGI and static files

2019-09-17 Thread Martin Jaan Leesment
It works by moving static directory but was wondering about a more intelligent solution, that is, if it exists with fastcgi. -- 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

Django FastCGI and static files

2019-09-17 Thread Martin Jaan Leesment
Hey I'm new to serving Django website on a shared server as well as using fastcgi and .htaccess so this might be a basic question. Namely I'm having difficulties serving static content. I've tried playing with htaccess rules, but no luck yet. My project structure: myproject/ ├── myapp │ ├──

Re: ORM

2019-09-17 Thread Jani Tiainen
Most tools are capable of exporting uml to code format. A little googlin should help. ma 16. syysk. 2019 klo 18.57 Yann Mbella kirjoitti: > I needed the contrary having uml diagrams and generating models from > does diagram > > Le lun. 16 sept. 2019 à 16:43, Yann Mbella a > écrit : > >> Thanx

Problem with on_delete=models.CASCADE and MariaDB

2019-09-17 Thread Jan Marquardt
Hi everyone, I am relatively new to Django and struggeling with on_delete=models.CASCADE and MariaDB. I have two simple models which are associated to each other through a ForeignKey. If I delete one parent object, I would expect the child objects to be deleted, but I get an IntegrityError

Re: DRF

2019-09-17 Thread Soumen Khatua
Thank you, It really helps me a lot. Regards, Soumen On Tue, 17 Sep 2019, 12:50 Andréas Kühne, wrote: > Hi Soumen, > > So let's look at your questions: > 1. super(UserLoginSerializer, self).__init__(*args, **kwargs) - this means > that it gets the parent of the UserLoginSerializer - which is >

Re: DRF

2019-09-17 Thread Andréas Kühne
Hi Soumen, So let's look at your questions: 1. super(UserLoginSerializer, self).__init__(*args, **kwargs) - this means that it gets the parent of the UserLoginSerializer - which is serializers.Serializer. You can force python to choose another parent if you want to do something different, by