Anonymous
You are doing some mistake I think
Ubaid
Hello guys I have just started working on django...I just want to know is mongo compatible with mongodb?
Ubaid
We are designing a web scraping application using django and mongodb(to store the scrapped data). Any idea how should we proceed?
Ubaid
Django*
Anonymous
Use beautiful ful soup..make one page app
Mr.Perfect
Please any one help me I try to add Next and Previous Button in my website but it not Working in final step. I posted my quary here : https://stackoverflow.com/questions/66289745/i-try-to-add-next-and-previous-button-in-my-django-project
Pr
Pr: Want to convert html to pdf I used xhtml2pdf it is working fine But image is blurred pixels and color is not coming properly. Can someone give me solution for that ?? How we can show proper image when convert html to pdf ?
Vinay
Guys how to implement a login form and authentication using Django 3
Anonymous
Guys how to implement a login form and authentication using Django 3
Lot of vidoes available on YouTube...did you check
Vinay
Yaa there it’s wrkng they are using version 2
Vinay
No one using version 3
Vinay
And few import statements are not getting done
Mohit
Anybody who has deployed django rest channels app on ubuntu server?
Yogesh
Guys can we create single model.py file for multiple applications at project level?
Anonymous
Copy their code and check django 3.1 doc and compare what has changed
Anonymous
You just need to import that model
Yogesh
It will create model for particular application?
Anonymous
Add models.py in core application and Import that in multiple apps
Anonymous
Just try and see if u get errors
Anonymous
Just add two columns
Yogesh
Ok I will..
odin
In a blog website how can i do update/delete operation on other users post
Anonymous
Via admin panel
odin
Via admin panel
But i am trying to do it with my cms i.e. without going to admin panel
Anonymous
You need to implement CRUD operation..search on YouTube..there are 10-15 videos already available
Anonymous
What is the difference between your Cms and Django CMS?
Uluk
hi, now i use postgresql on my localserver with django. I want to upload the project on github. If I do it now, my database won't work, how can I fix it
Jacek
github pages are for static pages, not for Python/Django/Postgres/anything with database
Uluk
ok, if I have postgresql file with db named postgres.sql. How can I connect database to project django?
Uluk
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': BASE.DIR / 'postgres.sql', } } I used that, it doesn't work
Jacek
PostgreSQL is not file database though....
Jacek
You need to install PostgreSQL server and import structure along with data from your postgres.sql file
Uluk
Oh I didn't know, thanks
Jacek
then configure properly django project. It has to point to your server: HOST, USER, PASS, DATABASE - all these data should match.
Uluk
😅
Jacek
If you need file database, then you definitely need something simpler. It's called SQLite and it works like you attempted.
Mohamed
Guys, Is just skill enough to land a job or do we need a degree for sure?
Mohamed
Is degree mandatory?
Mohamed
I'm thinking to discontinue and spend my time as a full time designer/ developer. will that be good?
Mohamed
@ayoallu
Ayobami
I'm thinking to discontinue and spend my time as a full time designer/ developer. will that be good?
I think both are equally important. The degree gives you the ability to diversify or sharpen the skills you learn. I would suggest you continue the degree while you sharpen your skills.
âshîsh
Anyone worked on flower task manager?
Kiran
Hi Guys, we are hiring. Looking for Django developer. So if intrested DM me your Updated resume
Ubaid
Plz help me how to deploy Django with mongodb...i need to start with a login n registration form
Doragonsureiyā
Ubaid
Use djongo
Any help or resources?...that I cn refer to while using django n mongodb???
Anonymous
Any help or resources?...that I cn refer to while using django n mongodb???
https://www.djongomapper.com/integrating-django-with-mongodb
Anonymous
guys, help me
Anonymous
for problems with generating a valid form, no validation is returning False and I cannot access the data filled in the form
Anonymous
I'm having trouble generating a valid form, in the validation if it's returning False and I can't access the data filled in the form
Anonymous
https://pt.stackoverflow.com/questions/496104/problema-ao-salvar-dados-do-form-django
Anonymous
Any help or resources?...that I cn refer to while using django n mongodb???
https://www.djongomapper.com/get-started/#install This is IRM
Anonymous
This is ORM for mongodb
איש רגיל
Is anybody knows VK API?
Doragonsureiyā
Is anybody knows VK API?
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 ~80,000 people here, the probability that someone will help is pretty high. How to ask smart questions: http://catb.org/~esr/faqs/smart-questions.html
Anonymous
I have a page structure of View movies -> selected movie(showing the details of the movie) -> book movie (of the selected movie) My question is how will I write the urlpattern to get to book movie section
Sweetie
Is it possible to add AND / OR conditions in django-filter Or is there any better package? I am trying to build a car dealership website that will let user search the inventory with multiple fields, combine filters with AND / OR conditions. I am using django-filter to filter results. But it seems I can only do AND conditions with it
Blessy
Hi all, Can we incorporate any dashboard creating tool in django project
dull
Не у кого не было проблемы, что pycharm игнорирует brakepoint, именно в django. В функцию заходит, отрабатывает, но не получается задебажить?
Krishna
Anyone has study material for django?
Uday
class LeaveApplicationView(ListView): model = LeaveApplication template_name = 'home/applications.html' context_object_name = 'applications' path('applications/', views.LeaveApplicationView.as_view(), name='applications'), AttributeError: 'function' object has no attribute 'as_view' im using as_view() with a listview class, why am i getting this error?
Uday
in views.py
Naman
yes
Send code
Uday
Send code
from django.views.generic import ListView, DetailView @login_required class LeaveApplicationView(ListView): model = LeaveApplication template_name = 'home/applications.html' context_object_name = 'applications' this is what i have in views.py
Uday
could it be because of decorator? i doubt that
Uday
i copied that from my previous project and no problem in that project with that import
Naman
I found it in the documentation