Re: django 1.6.0: admin pages not using unicode methods declared in my model

2012-11-26 Thread ajendrex
Yes, I'm using python 3. I think there is no ticket for this yet, but I would prefer someone with better english and more time using django posted it. On Monday, November 26, 2012 1:38:04 PM UTC-3, bak1an wrote: > > No need for that. I've reproduced your problem. With python 3 __unicode__ > met

Re: django 1.6.0: admin pages not using unicode methods declared in my model

2012-11-26 Thread ajendrex
name="Company" >verbose_name_plural = "Companies" > > On Sun, Nov 25, 2012 at 8:27 AM, ajendrex > > wrote: > > Hello, > > > > I following the tutorial and realized that the admin pages are not using > the > > __unicode__() methods

django 1.6.0: admin pages not using unicode methods declared in my model

2012-11-24 Thread ajendrex
Hello, I following the tutorial and realized that the admin pages are not using the __unicode__() methods declared in my model: One of my classes: class Company(models.Model): name = models.CharField(max_length=20) description = models.CharField(max_length=500) url = models.URLField(max_l

Re: Django 1.6.0 over python 3: mysql?

2012-11-23 Thread ajendrex
I decided to use postgresql and move on :) On Friday, November 23, 2012 11:02:10 AM UTC-3, ajendrex wrote: > > Hello, > > I'm new to django and I'm going directly to use it over python 3 (I have > been using python 3 for mor than one year). However, the MySQLdb library

Django 1.6.0 over python 3: mysql?

2012-11-23 Thread ajendrex
Hello, I'm new to django and I'm going directly to use it over python 3 (I have been using python 3 for mor than one year). However, the MySQLdb library doesn't support python 3 yet. Is there a way of connecting django to mysql over python3? If not, any plan to get it in the near future? -- Y