Master
This means you doing something wrong. Command work normally, just tested.
Master
Clean up pip, remove "encrypted_model_fields" from application, remove FIELD_ENCRYPTION_KEY from settings. Reinstall "encrypted_model_fields" and try again
Anonymous
This means you doing something wrong. Command work normally, just tested.
It worked when I put 32 URL base-64 bytes there instead of random text
Master
Then use your "32 URL base-64 bytes" as key.
Anonymous
Then use your "32 URL base-64 bytes" as key.
I put that and I get the key so the generated one is the key?
Anonymous
I love Django
Jigani
Ravid
There is way to make Django web admin with option to edit files online?
Ravid
like another web panels
Jigani
That's what django admin is for
Ravid
Where can I edit files?
Ravid
I see just add users and add groups at the admin Django
cj
Where can I edit files?
what kind of files?
Ravid
the files of the website
Ravid
I don’t understand what the admin area used for if not to online edit the python files
cj
I don’t understand what the admin area used for if not to online edit the python files
it's to make basic CRUD operations over the models of the project
cj
I don’t understand what the admin area used for if not to online edit the python files
why on earth do you want to edit python files using the admin panel? 😱
Doragonsureiyā
Looking for Django tutorials? you can follow these three recommended ones: * Official documentation and tutorial * Tutorial from MDN * Tutorial from django-girls
Ravid
So what can I do with the admin panel?
cj
I hope you know what "CRUD operations" means
Ravid
So there is models that will make the panel interesting?
Денис
So what can I do with the admin panel?
Make. Basic. CRUD. Operations. If you don't know what this means, you've probably come to backend development too early, without understanding basic web concepts
Денис
So there is models that will make the panel interesting?
Please finish at least a couple tutorials and then come with serious problems. We can't spoon-feed everyone
cj
So there is models that will make the panel interesting?
I have a feeling that you think "models" in this context means something else than Django's models 🤔
Ravid
There is website for all models?
Денис
There is website for all models?
Yes. Django docs. Lots of models. https://docs.djangoproject.com/en/3.0
Hari
Python and django project I want support on it , in hyd
Anonymous
My modal form does not show error like "this field is required" on didnt putting the required data but also don't submit on click.. How do I make it to show an error?
Anonymous
Bunty chhatri wala..
Its JavaScript issue or u can simply show an error message with Django but it will be ugly
Anonymous
Like form.error
Anonymous
advise some site to study the postgresql database
Bunty chhatri wala..
Like form.error
Front-end is the best way to show form validation error
Bunty chhatri wala..
With django simply write : *messages.info* something.. didn't remember the actual command
Sultonbek Ikromov
and give validation)
Sultonbek Ikromov
and set required = true
Ильяс
How to create two dependent dropdown field in rest framework
Anonymous
Who uses postgresql?
Doragonsureiyā
Who uses postgresql?
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 48k+ people the probability that someone will help is pretty high. Also please read: http://catb.org/~esr/faqs/smart-questions.html
Anonymous
How can I do a pedigree chart in django?
Anonymous
Any ideas?
Anonymous
Any odoo expert here
Anonymous
Please give the steps to start and run the odoo project
Muflone
Please give the steps to start and run the odoo project
Install it! Btw this is not the right place where to ask You can find also a docker container with everything is needed
ADJ
Please give the steps to start and run the odoo project
Hello guy! Just install odoo and create a new project. The interface is intituive.so when you're a biginner you can easily find yourself. Some template for web apps are already defined...
Anonymous
Like django I need certain commands to start a project with odoo
ADJ
On windows, you dont need any command to start an odoo project
K
How can i get name of thing on which i m clicking using request object...????
K
Index.html --> pastebin.com/vYOcPrhe Views.py ---> pastebin.com/E03ZcyqM Destination.html --> pastebin.com/FUSB6ztz
K
Index.html --> pastebin.com/qKN9eGLi
inchidi
Index.html --> pastebin.com/qKN9eGLi
you can pass get parameter in your url like this <a href="destination?destination={{dest.name}}" name="{{dest.name}}">{{dest.name}}</a> then in you can access it with request.GET.get('destination', '') in your destination() view
R
Have the sites app included in INSTALLED_APPS
R
?
web
Hello .. i need postgreSQL lessons for biggners ; to learn me how i use this database with Django2 to do search application for my blog .. thanks
Bunty chhatri wala..
Comment out django.contrib.sites
Bunty chhatri wala..
Not working?
Bunty chhatri wala..
Then uncomment that line
Bunty chhatri wala..
Simply backup your files and start a new project
am π
i routed the api endpoint for starting and stopping crawlers(using threads) But on stop route it comes out of console thus giving pain of restarting it every time , i need  help to keep crawler live all the time and thus on routes to start crawling. and pause on /stop or /pause using flask
Bunty chhatri wala..
Can u share your settings file?
web
"Django by Example" book has a brilliant blog application example. WIth search.
Thanks for your answer .. about this book ;yes it is very good book ; but the example about search apps with postgress i am not understand it so much;so when try it always give me error ! So i think I must understand the postgreSQL from zero to solve the error ..
Leonardo
guys, how can i create a model with just id column?
Jimmies San
guys, how can i create a model with just id column?
something like class Model01(models.Model): # Fields id = models.UUIDField() maybe?
Михаил
Hello. I'd like to have a staff user which has access to admin site. I've created one but when I log in this user it has empty admin page with message: You don't have permission to view or edit anything.
Михаил
But this user has set of permissions
Михаил
Why admin page is empty for staff user?
Михаил
User.is_staff = True User.is_superuser = False