Lamepic
Hello guys, Please if anyone has ever used django-oscar, how well would you recommend it to someone. Is it good or should i just start everything from scratch. Thank you
Sergey
And your opinion about other e-commerce django frameworks
Muflone
appname/static
Muflone
🧐
Gopal
What is the purpose of using Middleware in django ?
It is used for session maintenance, it can store session in database or in file system, in cache etc.
Lamepic
Same question from me)
Have you gotten any information about them?
Sergey
Have you gotten any information about them?
Just read overview of them, but didn’t tried by myself.
Sergey
https://djangopackages.org/grids/g/ecommerce/
Mirco
Thanks.
It's much easier to customize and modern
Sergey
Sergey
Yup
Sad
Mirco
Nope
Nikhil
Anyone here using visual studio
Nikhil
I have completed half project in pycharm and then moved to visual studio, why visual studio is not showing terminal option in it
Nikhil
And it is not showing full Mysite folder at one time
Nikhil
Like in pycharm we give just one line of code and it will act on it
Mirco
Like in pycharm we give just one line of code and it will act on it
They are different and VSCode is not an IDE It's normal you don't find lots of similar stuff
Nikhil
Ohkk
Nikhil
So, how will I give command of run server in it
Nikhil
I moved to vs today
Mirco
So, how will I give command of run server in it
There's the terminal CMD/CTRL + SHIFT + U
Nikhil
Ohkk I found my error I just closed solution explorer
Nikhil
And now one more thing.... What album.objects.all() give album is class in model
Anonymous
how can i learn api in django ?
Gopal
View=>integrated terminal
Wisdom
how can i learn api in django ?
Check out Django Rest Framework.
Mirco
There should be an option of terminal
I shared the shortcut 😊
Gopal
Oh, missed that
Anonymous
Anyone has a project for hackathon. Required urgently
Yash
How to acess other applications models object in some other views files
Anks
how to make authenticate with google in registration?😕
Mirco
how to make authenticate with google in registration?😕
https://github.com/python-social-auth/social-app-django
Khumoyun
Hello, who knows file and message transferring on Django with http like online chat?
Ghorz
@imraniqbal
Ghorz
Yep?
You introduced transcrypt to me, I just made a working pocket calculator with it, wanted to share but privacy privacy privacy
Ghorz
I'm developing with it already, I managed to connect it to Django on my first trial
myii
Excellent. Has it saved you time and effort?
myii
Fantastic, I'm glad to hear it's been helpful.
myii
I don't mind hacking JavaScript directly but it's so much easier to let it be transpiled by Transcrypt.
Ghorz
I don't mind hacking JavaScript directly but it's so much easier to let it be transpiled by Transcrypt.
Yes, the upside is you code in your family language. So frontend is transcrypt, Backend is Django. No added syntax except for DOM. You can create 3D with it. It will help spur mobile app dev since you can use it to write nodejs, react, Ios directly.
Ghorz
IOS
myii
Definitely.
Ghorz
Definitely.
Once again, thank you 🙏
myii
You're welcome!
Anonymous
Hey, guys I need help in django project for hackathon and we're done with the frontend, we've done part of django but we messed it up in the backend at last. If someone can help/guide it'll be great. We've to submit it by 10:30
Roberto
Hello, did anyone here had to extend or replace the permissions system.
Anonymous
I'm getting an error while loaddata from json UNIQUE constrain failed: django_content_type.app_label, django_content_type.model
Anonymous
Already tried deleting databases, migration but not working also commenting Signals
Anonymous
Anonymous
Then what can be the solution?
The Summer
Then what can be the solution?
Bro before django u should learn FUNDAMENTAL SQL
Anonymous
Oh it solved..I was dumping the whole database not the main apps only
Manik
How to check for request is coming from application or html in restapi ,so that render or response can be used
Raad
Hey guys, I have a database now almost ready but my question is do I need to include tables like permissions and roles? Or Django will provide them to me? Couuld you please tell me where I can find the tables that get created by Django when i migrate?
Anonymous
Ok
Anonymous
Thank you😂
Ihor | Ігор
Mb you should try BooleanField?
Sai
You can use just IntegerField
Sai
Enough
Денис
Hey guys, I have a database now almost ready but my question is do I need to include tables like permissions and roles? Or Django will provide them to me? Couuld you please tell me where I can find the tables that get created by Django when i migrate?
This is an SQL database stored where you tell Django to do this. If your database settings are the default ones, then it's most probably db.sqlite3 in the root of your project.
Yash
I am using the Django admin tool as an internal tool to reach into a remote database. Most of my models work perfectly with the save. What happens is that the admin screen gives a successful "save" message, but the grid view doesn't show any records. When I click on the entry in the right hand "Recent changes" list, it says: Change learner batch back to draft with ID "None" doesn't exist. Perhaps it was deleted? Any advice on why this is happening would be welcome :)