Fabio
You should use docker volumes in order to persist data.
Thanks, I started to read right now about it 👍
Anonymous
Anyone know django sample history
Mehmet
but would it work with orm? and what if i added new columns in existing models /table which is managed false. for that i will have to create columns manually?
You might use kind of hack for that but I would not suggest that I don't know how it will behave in new migrations. 1. Try to create model tables with same DDL script on DB. I mean same till index names. You can change existing index names to Django created ones. You can create tables with different db_name Meta option. After trial errors by extracting DDLs you will find out true DB DDL. 2. And Migrate with fake tag, (look for fake migrations)
Mehmet
Or you can totally create new tables with Django ORM and move your old data to new tables. Because instructions above need some tweaking first. If you do wrong, you may face migration breaks in future.
Mehmet
If my table does not have 100 millions line of data I would prefer second. Creating temporary ETL pipeline looks more cost effective. I generally handle these kind of operations with Talend Opensource.
SNIR
TemplateDoesNotExist at/ on deploy to heruko, anyone mange to fix it ?
Lone
can anyone help me with django rest and flask payment
Doragonsureiyā
can anyone help me with django rest and flask payment
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
Omar
How can i have multiple user types ?
Omar
Like sign up as teacher or student
Yash
Hi, which gets executed first in django req/res cycle when you hit the url ? Model or view ?
Tejesh
I'm working on digital signage project using django. For reference I found this repository https://github.com/jbittel/django-signage/tree/master/signage After setting this app up... I'm able to do the curd operations like: Creating Display Adding Slides Adding Videos This app is using django site framework. I'm unable to understand how to display this content that is created. It shows that content is on example.com/display/1/.... But I dont how it works or how to show it on my device
Tejesh
Do you really wannt to use 6 year old django project?
Just a reference coz I couldn't find anything else to refer
Ghorz
Do you really wannt to use 6 year old django project?
Over 70% of the program that processes financial transaction is 60-70years old. What's wrong with that
Дауран
Guy's I have a question relation with email addresses , is it necessary to provide email password in setting and always provide our own email to register any new user
Ghorz
The django you use today still has code written in its first version
Ghorz
Maybe django 1.2 or so
Ghorz
Install it, the migrate the code to latest version
Tejesh
Install it, the migrate the code to latest version
Tweaked the code to work with django latest lts
Tejesh
Did the already
*that already
Tejesh
Now the thing is... It's using sites framework which i don't know what it does
Ghorz
django.sites?
Ghorz
There must be a pointer to the framework
Tejesh
django.sites?
Django.contrib.sites.models
Tejesh
Site model
Tejesh
Can I DM you?
Ghorz
Site model
Did you add SITE_ID=1
Ghorz
Then migrate
Tejesh
Then migrate
I've done everything
Tejesh
Can I DM you?
I would show u images
Ghorz
I'll check the code base from the link you posted
Tejesh
Django.contrib.sites.models
Any one who knows how this works?
Anonymous
hello guys , ı ıhave problem how can ı saved jquery dynamic forms to database ??
DY
Hello, how to make a multi-language website on django without gettext
Anonymous
Hello, how to make a multi-language website on django without gettext
he is video awsome https://www.youtube.com/watch?v=xI97sLMd1rM&t=875s check thiss {% trans 'hello' %} try this tag and makemessages system
Anonymous
if u follow this man u can fixed your problem..
Muflone
I cleared migrations file and migrate again and nothing happend on DB
Migrations must never be deleted, they're part of the source. Migrations are totally unrelated to the data in the db
DonLarry
Ajax
You can also use Fetch API
Anonymous
Hello developers, How can I save videos in Django? Note: in production
Mehmet
Will you use transcoding pipelines?
saran
Hi, I have created a user using User. Objects.create_user(username='test', password='test123'). User has been created successfully but can't able to authenticate. It's return None.
saran
Anyone any idea wat might be issue?
Anonymous
User.objects.create(username='test', password='test123',is_active=True)
Anonymous
User(username='test', password='test123',is_active=True).save() Will also work
saran
He is not active
I have make true for is staff as well as is active
saran
Still not working
saran
Anonymous
Use shell
Anonymous
To check if there is any user exist
saran
Use shell
I tried using via Shell also.. This authenticate return None in views.
Anonymous
User with staff status exist but can't to login to admin Is that the issue
saran
I used a variable ob to get obj.. That is not return the object.. That cause of the prblm
Abrar
Proceed with your question
Abrar
Drop the question directly, no need to wait for response.
Anonymous
I was active here for a long time. And I hope I have fixed many users problem. But if anyone can fix a issue of me, I will glad. My primary account is restricting me to access this group Username is pvanfas
Anonymous
Says sorry, this chat is no longer accessible
N-34512082
Hi everyone
N-34512082
Can u help me to make my project in Django on e-learning website
N-34512082
???
Bunty chhatri wala..
Can u help me to make my project in Django on e-learning website
Google it.. you'll get a project related to this.. with a code
N-34512082
Ok
Mysterious Kid
Am creating a online shopping site... I needed help regarding "Add to wishlist" button