Re: CRUD Generator

2021-01-07 Thread Omkar Parab
You can build whatever you want, using Django! On Fri, Jan 8, 2021, 11:13 AM Chandrashekhar Singh < chandrashekhar...@gmail.com> wrote: > Hello, > > Does anyone one know ? Is django is best framework for developing delivery > applications? > > Thanks > > On Thu, Jan 7, 2021, 11:39 PM Noel Simela

Re: CRUD Generator

2021-01-07 Thread Chandrashekhar Singh
Hello, Does anyone one know ? Is django is best framework for developing delivery applications? Thanks On Thu, Jan 7, 2021, 11:39 PM Noel Simela wrote: > Good day, > > I have explored several crud generator packages. > > I am looking for an opinion on the best package to adopt that has been >

CRUD Generator

2021-01-07 Thread Noel Simela
Good day, I have explored several crud generator packages. I am looking for an opinion on the best package to adopt that has been maintained for the past few months, If you have experience in django crud generators.Please let me know the one you have used, the pros and cons. Many thanks. -- Y

RE: Cache pages for fast loading

2021-01-07 Thread elon musk
Hi iis belongs to Microsoft  Sent from Mail for Windows 10 From: Dave ClevengerSent: Friday, January 8, 2021 7:54 AMTo: django-users@googlegroups.comSubject: Re: Cache pages for fast loading I have to use IIS at my job. I don't think redis is available on Windows. I use memcached which is similar t

Re: Cache pages for fast loading

2021-01-07 Thread Dave Clevenger
I have to use IIS at my job. I don't think redis is available on Windows. I use memcached which is similar to redis and can be run as a windows service and fully supported by Django's cache backend. If you absolutely want to use redis, then you'll probably want to spin up a Linux instance and run

Re: Redirect one page to another on Django tremplate

2021-01-07 Thread pankaj palmate
can you elaborate it more means are you taking about Response? On Thursday, January 7, 2021 at 10:48:33 PM UTC+5:30 amanmo...@gmail.com wrote: > Hello Django Lover, > > I have a doubt how can we redirect one page to another on API response / > fetch response on Django template . > -- You rec

Redirect one page to another on Django tremplate

2021-01-07 Thread Aman Modi
Hello Django Lover, I have a doubt how can we redirect one page to another on API response / fetch response on Django template . -- 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,

Re: Conversion and import of a pre-existing database

2021-01-07 Thread gabriela...@gmail.com
Perhaps there is a utility program that can do that. Something like converter. Have you look in web foros ? El jueves, 7 de enero de 2021 a las 11:58:36 UTC-3, pe...@oneilinteractive.com escribió: > Jérémy, > > It all depends on the Database which route to take. Is it one table, > multiple ta

Re: Cache pages for fast loading

2021-01-07 Thread Eugene TUYIZERE
No I only use IIS > On 7 Jan 2021, at 17:18, gabriela...@gmail.com > wrote: > > Eugene: > is IIS a Microsoft server ? Have you tray this with other server? for > example, APACHE. There are a lot of hosting they give host service. > >> El jueves, 7 de enero de 2021 a las 12:10:19 UTC-3, euge

Re: How to get request.user.username in django logger?

2021-01-07 Thread gabriela...@gmail.com
user = auth.authenticate(username=username, password=password) El jueves, 7 de enero de 2021 a las 10:58:36 UTC-3, shailesh...@gmail.com escribió: > Hello Everyone, > > Can you please check this question and help me what mistake I am doing. > > > https://stackoverflow.com/questions/65613400/ho

Re: Cache pages for fast loading

2021-01-07 Thread gabriela...@gmail.com
Eugene: is IIS a Microsoft server ? Have you tray this with other server? for example, APACHE. There are a lot of hosting they give host service. El jueves, 7 de enero de 2021 a las 12:10:19 UTC-3, eugenet...@gmail.com escribió: > Dear team, > > I deployed a django application on windows serve

Cache pages for fast loading

2021-01-07 Thread Eugene TUYIZERE
Dear team, I deployed a django application on windows server with IIS web server. But the app is slow and I want to implement django redis for web page caching. Please assit how i can do this. Thank you -- You received this message because you are subscribed to the Google Groups "Django us

Re: PostgreSQL Django Query

2021-01-07 Thread gabriela...@gmail.com
Sachin: I don't understand the reason you bring 2 million records. Why you don't do that witht REACT? So there is not recharge the browser every time request data from server. El jueves, 7 de enero de 2021 a las 11:13:23 UTC-3, sachin...@gmail.com escribió: > I am using Python Django and Postg

Re: Conversion and import of a pre-existing database

2021-01-07 Thread 'Peter van der Does' via Django users
Jérémy, It all depends on the Database which route to take. Is it one table, multiple tab;es, what are the relationship? My plan of attack would be: 1. Create all models in Django as you want them to be. Use the Django standards to name your new fields [1]. 2. Let Django handle the field n

Conversion and import of a pre-existing database

2021-01-07 Thread Jérémy Garniaux
Hi, I'm working on my first Django project. Already read the tutorial but following along it to be sure not to miss anything. I've been asked to rebuild a pre-existing website. It's basic in functionality: various users create complete descriptions of heritage items in the admin area, and th

PostgreSQL Django Query

2021-01-07 Thread Sachin Kumar
I am using Python Django and PostgreSQL to build our report app. I am using below mention query to find some details. the query mention below is running fine in PostgreSQL command line and giving result in 2 sc for 2 million cards but when i i am try the same in Django application it is taking

How to get request.user.username in django logger?

2021-01-07 Thread Shailesh Yadav
Hello Everyone, Can you please check this question and help me what mistake I am doing. https://stackoverflow.com/questions/65613400/how-to-get-request-user-username-in-django-logger?noredirect=1#comment116006814_65613400 -- You received this message because you are subscribed to the Google Gro

Re: Two models one form, or use generic CreateView

2021-01-07 Thread _M_A_Y_A_N_K_
You could use InlineFormSet, which is designed specially to handle such problems. Refer to the documentations here https://docs.djangoproject.com/en/3.1/topics/forms/modelforms/#inline-formsets Here you could provide the primary model (in your case it will be CUstomUser), and the secondary model

Re: Two models one form, or use generic CreateView

2021-01-07 Thread Farai M
Your code is fine but you will need to preload your form with the customer which you want this can be done in the get method of that create view.Read more about use of DjangoModel form https://docs.djangoproject.com/en/3.1/topics/forms/modelforms/ Then override the get() method and respond with t

Re: hello guys, how can I upload multiple images using single button? help me please

2021-01-07 Thread Steven Mapes
Within Django Admin or somewhere else? Are you using FileFields and trying to save to the models or are you just trying to POST multiple files? On Thursday, 7 January 2021 at 12:25:10 UTC allaberdi...@gmail.com wrote: > -- You received this message because you are subscribed to the Google Grou

hello guys, how can I upload multiple images using single button? help me please

2021-01-07 Thread Chelsea Fan
-- 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 on the web visit https://groups.google.com/d