Dynamic attribute call in model

2018-11-03 Thread enrico baranski
Hi Django community, how can I access model fields dynamically during run time? At the moment I just know how to access model fields explicitly. An example: class Example(models.Model): text = models.CharField(max_length=50) comment = models.CharField(max_length=50) def retur

Migrating back-end from flask to django

2018-11-03 Thread oganga chantal
need help with creating models for my django app, -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this grou

regarding e-commerce website

2018-11-03 Thread manish_rocks
hi i want to know the technologies which will use to buid a website like amazon using python framework like html , css and please give all the list which will use -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Migrating a flask app to Django

2018-11-03 Thread oganga chantal
Hi, i have a front end in django and the back end in flask. i need help in combining the two -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubs

regarding e-commerce website building using djnago

2018-11-03 Thread manish_rocks
what technologies will be use to build a website like amazon using python frame-work django please list all technology ,like - html , css and if any other . thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

Re: Migrating back-end from flask to django

2018-11-03 Thread Igor Nascimento
Hi, I'm migrating my Flask app to a Django app. In cases of the models, it's a little different between both. In Flask, you have to put id and in Django it's not necessary. I'm showing you the difference between Flask and Django while creating models. It's important to say that I was using Flask_S

Using forms for bulk records

2018-11-03 Thread Elias Coutinho
Good morning people. As always my problem is conceptual. I have improved a lot, but still in the fight. 1 - I have a list of data and I know how to add it to another model at one time. (Easy) 2 - It turns out that in this list some data will be filled by the user before saving and will be repea

Re: regarding e-commerce website

2018-11-03 Thread Siva gatti
Shareincollege.com build with vue js ,vuetify,firebase as backed On Sat 3 Nov, 2018, 6:09 PM manish_rocks hi i want to know the technologies which will use to buid a website like > amazon using python framework like html , css and please give all the list > which will use > > -- > You received t

Cannot get Django test migrations to detect test models.py

2018-11-03 Thread chris
Hi folks, I'm trying to build a test suite for a django plugin for a field. To test the field I need to have a test model, but since my django app does not provide models, and I have the model in the /tests/models.py it's not detecting the model when the test db migrations are applied. I saw som

Oracle database

2018-11-03 Thread fatoubinetou196
Hi!!! Do you know how to use oracle database with django? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to t

Re: Oracle database

2018-11-03 Thread Phako Perez
You need to define your db connection details , server schema user password within file settings.py inside your project directory :) Sent from my iPhone > On Nov 3, 2018, at 1:26 PM, fatoubinetou...@gmail.com wrote: > > Hi!!! Do you know how to use oracle database with django? > -- > You rece

Re: Cannot get Django test migrations to detect test models.py

2018-11-03 Thread Phako Perez
I can suggest to use different name for your test app, as directory test is used by Django for actual test your application, maybe is that the reason your app is failing Sent from my iPhone > On Nov 3, 2018, at 12:40 PM, ch...@routh.io wrote: > > Hi folks, I'm trying to build a test suite for

Re: Using forms for bulk records

2018-11-03 Thread Phako Perez
You could add your mode into admin.py field so you can modify and all those stuff from admin page Sent from my iPhone > On Nov 3, 2018, at 7:48 AM, Elias Coutinho wrote: > > Good morning people. > > As always my problem is conceptual. I have improved a lot, but still in the > fight. > 1 - I