Shreehari
i know mongodb is not a relational database, but how can approach this?
Subroto
Anybody can help in resolving the below error
Subroto
Fatalerror: the application server could not be contacted
Subroto
While installing pgadmin4
Subroto
Do I have to install pgadmin 4 separately or should I use the pgadmin 4 which comes inbuilt with postgre SQL?
Sahil
Subroto
Sahil
Subroto
I am just started to learn..
Subroto
Ok
Subroto
Subroto
Already done
Subroto
Same error...do I have to make any changes in the location where it's been installed?
Rajvir
Can anybody tell me from where should i learn abt creating bot in telegram using django?
Sahil
Rajvir
Okay
Sahil
Rajvir
Thanks
I'm
Hey how can I store values printed in browser console in my view
Rajvir
U mean Javascript to view file?
Ajitesh
Any one used oauth2???
Andrej
Doragonsureiyā
Any one used oauth2???
Please don't ask meta questions like:
"Any user of $x here?"
"Anyone used technology $y?"
"Hello I need help on $z"
Just ask about your problem directly! With a very high amount of people here the probability that someone will help is pretty high.
Also please read: http://catb.org/~esr/faqs/smart-questions.html
Andrej
When you work on multiple Django projects and you have to do the same things multiple times. How do you handle this? For example I'm planning 3+ Django projects. Everyone of them needs almost the same basic configuration with some changed parameters. For example all of them need to have: logging, mail, authentification (JWT+oAuth2), Newsletter, Registration+Login, captcha, push_notifications, storages, payments, ...
How can you reduce the amount of work? How would you handle this? Maybe in one basic Git-Project and all other Django projects fork from it? Or maybe with a plugin, in which is find the basic configuration which could be customized (overwrite some parameters)? What would be a good way to do this?
George
When you work on multiple Django projects and you have to do the same things multiple times. How do you handle this? For example I'm planning 3+ Django projects. Everyone of them needs almost the same basic configuration with some changed parameters. For example all of them need to have: logging, mail, authentification (JWT+oAuth2), Newsletter, Registration+Login, captcha, push_notifications, storages, payments, ...
How can you reduce the amount of work? How would you handle this? Maybe in one basic Git-Project and all other Django projects fork from it? Or maybe with a plugin, in which is find the basic configuration which could be customized (overwrite some parameters)? What would be a good way to do this?
Make a template for the whole project :)
George
Use django-cookiecutter
Andrej
Make a template for the whole project :)
Thanks, yes that could be one approach. What if I want to add a basic functonality to all of the projects? I would like to add something into the Parent codebase and all other django projects inherit from it and can overwrite the parameters. Is it possible with themes? Or is the theme just for the first initialization?
Andrej
template, not theme
Prantik
Can anyone help how to create a registration page using django in my project ( Online Bakery System)
George
Prantik
Like I have created one but the issue is that when I create an account through register the data gets stored upto that it's okay but the user which is logged cannot see the store page it's showing user has no customer
Prantik
Dinesh
Hi, Does anyone have end to end project using python and reactjs?
Anonymous
Hello friends, pls I am working on a backend for an Android app and it's my first time.
How can I make oauth2_provider generate both refresh and access token when I pass a user I'd and also how can I set the expiry time for the access token. Thank you all
Sai
You need to register your app on applications path with two keys
Anonymous
Please don't be annoyed, can you explain or send a link to a tutorial on how I can do that, I have no clue, it's my first time
Anonymous
Can anyone help me with how to ajax jquery to build single page application with json without using api
Anonymous
shekhar
has anyone deployed app on ibm cloud?
Anonymous
Yeah, sure
How to do that.. Any tutorial?
Mr
Any roadmap for learn django
Mr
I have complete idea how django works
How to work with models
How to work with database
Mr
What is next step i can do in django please suggest me
Vikas Singh
Hey guys
I am begginer in django rest framework how can I learn from youtube any best channel
Vikas Singh
Please guide
Mr
Andrej
Tavde_Nahi_Tabahi
Mr
But i dont know what can i do next....
Rest APIs or what
Vikas Singh
Okk rishav any other channels
Mr
Mr
And my backend is django
Vikas Singh
Ok
Mr
So guide me what things to learn for this project
Andrej
So guide me what things to learn for this project
When I learnt Django. I had chosen a project and learnt everything what I need by doing.
You will see what you need when you start with it.
Learning by doing.
Initialize the project
Integrate a template
Authentication,
Logging,
Maybe Celery
Do a deployment
Try to make migrations on your production DB
...
Doragonsureiyā
Please don't ask meta questions like:
"Any user of $x here?"
"Anyone used technology $y?"
"Hello I need help on $z"
Just ask about your problem directly! With a very high amount of people here the probability that someone will help is pretty high.
Also please read: http://catb.org/~esr/faqs/smart-questions.html
Dexter
https://stackoverflow.com/questions/63052862/django-cms-update-function-not-working-as-intended
Dexter
Anyone check out this issue
maroong
Mr
So i wanna build a movie app with flutter
Mr
Mr
For android i use flutter
maroong
Dinesh
Hi, I'm getting instance of 'onetoonefield' has no username member. Could someone pls help me
Anonymous
What's the model
Anonymous
Are you familiar with with the model doc ?
DTN
Hello, i'm trying to add an ValidationError after doing some validations in a MODELFORM, but had not succeded.
DTN
def clean(self):
cleaned_data = super(HorariosDisponibles, self).clean()
tutor = cleaned_data.get("tutor")
dia_hor_inicio = cleaned_data.get("dia_hor_inicio")
dia_hor_fin = cleaned_data.get("dia_hor_fin")
if dia_hor_inicio and dia_hor_fin:
if dia_hor_inicio.day != dia_hor_fin.day :
msg = 'Las fechas no pueden ser distintas'
self.add_error("dia_hor_inicio", msg)
return cleaned_data
DTN
(USMON)$
Hello