Re: ManyToMany field creation problem

2013-12-09 Thread Mrinmoy Das
Hi, Sorry Daniel for bothering, my understanding of many to many field was pretty shaky :) On Monday, December 9, 2013 5:02:13 PM UTC+5:30, Tom Evans wrote: > > On Fri, Dec 6, 2013 at 9:42 AM, Mrinmoy Das > > wrote: > > I cant get the field > > > > > > unit_price =

Looking for a job as a junior django developer or internship (remote)

2013-12-09 Thread Mrinmoy Das
Hi, Looking for a job or internship opportunities as a junior django developer (remote). I have about 5months of experience on working with django ( http://goromlagche.in/resume#experience). My mail id is mrinmoy.da...@gmail.com. Regards Mrinmoy Das http://goromlagche.in/ -- You received

Re: Django for in-house data

2013-12-09 Thread Lachlan Musicman
On 10 December 2013 00:23, wrote: > What I'm trying to understand now is it's possible with little effort to > build views which mostly behave as the admin interface would, doing some > customization on specific points where needed. > > For example, the paged views

Re: Django for in-house data

2013-12-09 Thread Mike Dewhirst
On 10/12/2013 12:23am, giuliano.bertole...@gmail.com wrote: the database is built from scratch, so I can use whatever I wish. Currently I'm performing some tests with SQLite, but plan to migrate to MySQL for production. The project is building a basic CRM with a few tweaks for managing specific

Re: How do I test my Django App on my Phone

2013-12-09 Thread Juan Pablo Romero Bernal
Hi, > I suggest setting up a URL using no-ip.org or similar service. > No-ip.org is free at this level and works great, at least on Ubuntu and > CentOS. I haven't tried other OS's. > Or you can use localtunnel (http://progrium.com/localtunnel/) it's easy to install and works fine on most

Re: How do I test my Django App on my Phone

2013-12-09 Thread Tim Chase
On 2013-12-09 17:28, Timothy W. Cook wrote: > I suggest setting up a URL using no-ip.org or similar service. > No-ip.org is free at this level and works great, at least on Ubuntu > and CentOS. I haven't tried other OS's. This Tim agrees with that Tim. :-) It's one thing to go through finding

Re: How do I test my Django App on my Phone

2013-12-09 Thread Timothy W. Cook
Tim Chase's answer works well for a now and then test. But many static IPs change every 24 hours or so. Plus you will probably want to do this many more times in the future as well as ask others to test it on various devices. . I suggest setting up a URL using no-ip.org or similar service.

Re: How do I test my Django App on my Phone

2013-12-09 Thread Tim Chase
On 2013-12-09 10:44, Muhammad Ali wrote: > Instructions I found online (such as this one: ) say that I should > plug the phone to the computer through a USB and run: manage.py > runser 0.0.0.0:8000 and visit this IP address via my phone's > browser. But it doesn't work and instead returns an

Re: How do I test my Django App on my Phone

2013-12-09 Thread Juan Pablo Romero Bernal
Hi, Your phone must be connected to the same network that your workstation is connected. So, the django app must running listening on local IP address like 192.168.1.2:8000 and from phone you can access the application using this IP. Hope this helps, On Mon, Dec 9, 2013 at 1:44 PM, Muhammad

Re: How do I test my Django App on my Phone

2013-12-09 Thread Nick Santos
I'm not familiar with the method you mentioned - and don't think it should work unless you establish a network connection through your USB connection, amongst other things. In a basic sense, 0.0.0.0 is nonroutable if you try to access it externally. That runserver command, if I remember correctly,

How do I test my Django App on my Phone

2013-12-09 Thread Muhammad Ali
Hello, I'm developing a Django-powered blog, with two versions: a desktop version and a mobile I optimized version for when it is accessed through a mobile device. Now, I'm trying to test it on my Samsung phone to see how it would look and act like when someone uses it through a mobile phone's

Re: I have a problem with wizard.

2013-12-09 Thread Olga Burdonova
More information from pdb... > /usr/local/lib/python2.7/dist-packages/django/contrib/formtools/wizard/views.py(60)current() -> return self._wizard.storage.current_step or self.first (Pdb) self._wizard.storage.current_step u'0' (Pdb) self.first u'0' (Pdb) n --Return-- >

Re: Does not generate the password hash my User

2013-12-09 Thread Ricardo Kamada
Thanks for the reply Jérôme. Know what it says but said if I just edit the save of the form () i lose the login form because the save () the model User.objects.create_user (self.email, self.email, self.password) Ricardo Ricardo 2013/12/9 Jérôme Thiard > The problem

itens vindo vazio

2013-12-09 Thread fabricio
I'm with this code in views form_pedido = PedidoForm(request.POST, instance=v_pedido) formset_itens = ItensInlineFormSet(request.POST, request.FILES, instance=v_pedido) if form_pedido.is_valid() and formset_itens.is_valid(): pedido =

I have a problem with wizard.

2013-12-09 Thread Olga Burdonova
I have a problem with wizard, no data from previous forms is stored in session backend ... What's exactly the problem I do not understand, but as a function called "def set_step_data(data): self.data[self.step_data_key][step] = cleaned_data" nothing is stored... then via pdb I see that

Re: Django for in-house data

2013-12-09 Thread giuliano . bertoletti
the database is built from scratch, so I can use whatever I wish. Currently I'm performing some tests with SQLite, but plan to migrate to MySQL for production. The project is building a basic CRM with a few tweaks for managing specific business types. I'm new to Django and Web frameworks

Re: Does not generate the password hash my User

2013-12-09 Thread Jérôme Thiard
The problem is that you have a `password` field in your `Cliente` model. So the `ClienteForm` save the readable value of the password in the Cliente model. You should not have this field in the model. Instead override the save method of your `ClientForm` to create the user in the form and not in

Re: How is /admin/jsi18n/ created

2013-12-09 Thread Tom Evans
On Thu, Dec 5, 2013 at 4:05 PM, Vincent Hussey wrote: > Hi, > We are looking at date formats for django and we are trying to figure out > how django creates the localised formats found at the link below. > > After a bit of investigation we have found out how to set them using

Re: ManyToMany field creation problem

2013-12-09 Thread Tom Evans
On Fri, Dec 6, 2013 at 9:42 AM, Mrinmoy Das wrote: > I cant get the field > > > unit_price = models.ManyToManyField(UnitType,through=UnitPrice, blank=True, > null=True) > > in Property table. > > After adding the field, I tried doing a schemamigration, but output says >

Re: Why does the startproject command open a file instead of creating project folders

2013-12-09 Thread Tom Evans
On Sun, Dec 8, 2013 at 8:02 PM, Gideon Bar wrote: > > Hello > > > I am new to Django and followed this tutorial > https://docs.djangoproject.com/en/1.6/ref/django-admin/#django-admin-startproject > > I am using windows 7 64 bit and the startproject command on open a file >

Re: Django for in-house data

2013-12-09 Thread Robin
You haven't said what DB product you are connecting to. However, why don't you use a tool that is designed to allow end users as well as syrems folk to interact with data - check out Pentaho - BI and DI applications and dashboards, reports etc. There is an open source version. You can

Re: Django for in-house data

2013-12-09 Thread Lachlan Musicman
On 9 December 2013 19:17, Mike Dewhirst wrote: > On 9/12/2013 8:14am, Lachlan Musicman wrote: >> >> To be fair, I think the best measure is the technical literacy of your >> users. The Admin interface is powerful, but they could also >> accidentally screw everything up. > >

Re: Django for in-house data

2013-12-09 Thread Mike Dewhirst
On 9/12/2013 8:14am, Lachlan Musicman wrote: To be fair, I think the best measure is the technical literacy of your users. The Admin interface is powerful, but they could also accidentally screw everything up. I agree that the Admin is not for general use. What I was thinking about was the