Use DropBox to Store Static Files in Django

2021-01-27 Thread Samiddha সমিদ্ধ
*How to use DropBox to use/serve Static Files and Upload Media in django project?* I use the method that mentioned here: django-storages[dropbox] And also try this method: django-dropbox-storage

Use DropBox to Store Static Files in Django

2021-01-27 Thread Samiddha সমিদ্ধ
*How to use DropBox to use/serve Static Files and Upload Media in django project?* I use the method that mentioned here: django-storages[dropbox] And try this method: django-dropbox-storage

Re: Show FK as input instead of drop down in admin

2021-01-27 Thread Mike Dewhirst
On 28/01/2021 3:28 pm, Jim Illback wrote: I think Kevin’s issue is that it takes a huge amount of runtime to create the FK’s select HTML tag - Django having to go through 1M rows before displaying the page. This issue is true in UpdateView CBVs as well. Changing the situation slightly - I’m

Re: Show FK as input instead of drop down in admin

2021-01-27 Thread Jim Illback
I think Kevin’s issue is that it takes a huge amount of runtime to create the FK’s select HTML tag - Django having to go through 1M rows before displaying the page. This issue is true in UpdateView CBVs as well. Changing the situation slightly - I’m talking about just primary keys from here

Re: Show FK as input instead of drop down in admin

2021-01-27 Thread Mike Dewhirst
On 28/01/2021 12:33 am, Kevin Olbrich wrote: Hi! Is it possible to disable fetching of related models for admin pages? I have a field that links to a table containing more than 1M rows which django tries to fetch and build the drop down. For my purpose, it is sufficient if it is a simple

Re: Conectarme a un AS/400 desde Django

2021-01-27 Thread Miguel Ángel Cumpa Ascuña
Hola, no puedes acceder a un archivo o no puedes acceder a una tabla en DB2 /400 de tu AS/400? El mié, 27 ene 2021 a las 12:20, EDWARD A. LUGO A. () escribió: > Buenos días, soy nuevo en Django y no he podido conectarme a un archivo > que tengo dentro de un

Conectarme a un AS/400 desde Django

2021-01-27 Thread EDWARD A. LUGO A.
Buenos días, soy nuevo en Django y no he podido conectarme a un archivo que tengo dentro de un AS/400. La Librería se llama: RORIVENTAA y el archivo se llama: IVARET por favor si me pueden dar una mano, muchas gracias de antemano. -- You received this message because you are subscribed to

Re: how create new django project with windows 10 and Python 3.9.1

2021-01-27 Thread Noel Simela
As easy as steps below: In your CMD: 1.Python - m venv yourvirtualenvironment 2 yourvirtualenvironment\scripts\activate 3.Pip install django 4.django-admin start-project yourptojectname -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: how create new django project with windows 10 and Python 3.9.1

2021-01-27 Thread Theresa Taye
Check if this helps: https://www.youtube.com/watch?v=hsrXhYElVdY Warm regards Virus-free. www.avast.com

Re: how create new django project with windows 10 and Python 3.9.1

2021-01-27 Thread RANGA BHARATH JINKA
Hi, Don't use py in front. Try with django-admin startproject . Also create a virtual environment and install modules inside that All the best On Wed, Jan 27, 2021 at 7:33 PM Fabio Fidone wrote: > [image: image.png] > > please, Can Someone help me to create a new project with python 3.9.1 and

Re: How can I use my Company SSO(Single sign On ) for login into my django application ??

2021-01-27 Thread Larry Martell
On Wed, Jan 27, 2021 at 6:02 AM Kumar Gaurav wrote: > > Hii , > > My users come to my django application after authenticated from company SSO. > Now , I don't want to create my own authentication model. I just want to > login the users who come to my page from the requests storing the details. >

Stack Overflow Question

2021-01-27 Thread Vooks Education
Hello kind souls, Anyone able to solve this stackoverflow question. Both answers were not able to solve the issue :) Any help is appreciated! https://stackoverflow.com/questions/65879639/how-do-i-include-my-def-clean-slug-function-into-my-views-or-template-so-that-it -- You received this

how create new django project with windows 10 and Python 3.9.1

2021-01-27 Thread Fabio Fidone
[image: image.png] please, Can Someone help me to create a new project with python 3.9.1 and windows 10? every time, receive same output. thanks a lot -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Stack Overflow Question --- delete function not working

2021-01-27 Thread Vooks Education
Any kind soul: How may I solve this stack overflow question :) https://stackoverflow.com/questions/65912953/why-cant-i-remove-the-member-from-the-list-and-delete-their-interest -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Getting Error in auth_user table

2021-01-27 Thread Ajit Mourya
django.db.utils.ProgrammingError: there is no unique constraint matching given keys for referenced table "auth_user" please explain why this error is popup while migrations. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

How can I use my Company SSO(Single sign On ) for login into my django application ??

2021-01-27 Thread Kumar Gaurav
Hii , My users come to my django application after authenticated from company SSO. Now , I don't want to create my own authentication model. I just want to login the users who come to my page from the requests storing the details. Anyone know how to implement this ?? I am stuck on it from

Show FK as input instead of drop down in admin

2021-01-27 Thread Kevin Olbrich
Hi! Is it possible to disable fetching of related models for admin pages? I have a field that links to a table containing more than 1M rows which django tries to fetch and build the drop down. For my purpose, it is sufficient if it is a simple input containing the id instead. How can I