Re: quasi-distributed system sharing data in django

2016-10-05 Thread Mike Dewhirst
On 6/10/2016 7:40 AM, Ricardo Pascal wrote: Hello folks, I have two django projects, (let call them A and B) they are independent applications (with different django versions), I'm in need to sync some data/models from A to B. My plan is to use the post_save signal to start a celery task

quasi-distributed system sharing data in django

2016-10-05 Thread Ricardo Pascal
Hello folks, I have two django projects, (let call them A and B) they are independent applications (with different django versions), I'm in need to sync some data/models from A to B. My plan is to use the post_save signal to start a celery task that will post a subset of data from A to B using

Re: Advanced search with aggregations

2016-10-05 Thread M Hashmi
Kindly provide some details like what are your models so people can understand what you are trying to do according to the available models. On Wed, Oct 5, 2016 at 8:38 AM, Raffa wrote: > Hi all > I have to create a page where I insert some cascade combobox that fill >

Advanced search with aggregations

2016-10-05 Thread Raffa
Hi all I have to create a page where I insert some cascade combobox that fill dynamically through which I perform aggregations on the db records. For example I want to know how many pants I still have in all Italian stores. I select from the combobox that contains the field "area" the "Italia"

Urgent Need: Strong Python/Django Developer needed immediately

2016-10-05 Thread Sunil Kumar
*Duration: Long term (3 years)* *Interview: Telephonic and then in-person (Sorry, we don’t pay for airfare/travel reimbursement for interview or any relocation expenses, if selected)* *Location: Bethesda, MD* *Rate: Open – Commensurate with experience. * *Visa Requirements: GC and

Re: Python Django on Hostica server

2016-10-05 Thread ludovic coues
>From what I have read of hostica, they only offer to host website written in PHP. 2016-10-05 15:21 GMT+02:00 Andris Diržininkas : > Hi there > > Actually I have very basic knowlage about web programming but I'm working > with a web programmer who does it on Python Django. I

Re: django-quiz modification

2016-10-05 Thread Yew Tze Ee
How to runserver? like python manage.py runserver On Monday, 10 March 2014 14:04:35 UTC+8, orchid barua wrote: > > I want to modify the django-quiz application. > https://github.com/tomwalker/django_quiz > > The quesiton will be a multiple true false type. Each question will have 5 > stem, each

Python Django on Hostica server

2016-10-05 Thread Andris Diržininkas
Hi there Actually I have very basic knowlage about web programming but I'm working with a web programmer who does it on Python Django. I asked him to put the almost finished site on my hostica server and he wanted to know - do they host Python Django and how do they do this? Maybe someone can

Re: django-quiz modification

2016-10-05 Thread Yew Tze Ee
yewtzeee@yewtzeee-VirtualBox:~/django-project/quiz_app/django_quiz$ python setup.py install running install error: can't create or remove files in install directory The following error occurred while trying to add or remove files in the installation directory: [Errno 13] Permission denied:

Re: django-quiz modification

2016-10-05 Thread Yew Tze Ee
Hi Tom, May I know do I need to start my own project? How to do python manage.py runserver? On Tuesday, 15 July 2014 04:23:50 UTC+8, Tom Walker wrote: > > Hi Orchid, > > I am the author of the quiz app that has been recently updated - check it > out: https://github.com/tomwalker/django_quiz >

Re: Add rows in migrations?

2016-10-05 Thread Mario R. Osorio
You can do that with fixtures: https://docs.djangoproject.com/en/1.10/howto/initial-data/ On Tuesday, October 4, 2016 at 7:21:07 PM UTC-4, Victor Porton wrote: > > After generating DB scheme, I need to add two rows with certain data to > certain table. > > How to do it? > > Can it be handled

Re: can't create django project using Windows command prompt!

2016-10-05 Thread Andreas Kuhne
Hi, First make sure that you have a valid virtual environment - it's the easiest way to run python code. When that is working, you can just write : "python django-admin.py startproject mySite" - your problem is that .py files have been associated with notepad ++, and therefore it opens the file

can't create django project using Windows command prompt!

2016-10-05 Thread Garin morel
I would like to start web designing using django! but Whenever i type " django-admin.py startproject mySite" in cmd this code popup through notepad, Then what should I do? #!c:\users\crepin\envs\myproject\scripts\python.exe from django.core import management if __name__ == "__main__":