Re: syncdb does not find model, but it does in the shell

2012-06-06 Thread jmolmo
I think that you have to indicate app_label in your separate model file According to: https://docs.djangoproject.com/en/1.4/ref/models/options/ class MyTestModel(models.Model): field1=models.CharField(max_length=12) field2=models.CharField(max_length=12) class Meta: app_label =

Re: I need a django application to embed a chat javascript in admin site

2012-05-25 Thread jmolmo
I solve that using OpenFire ( An XMPP Server with chat , multiuser-chat, etc ..) and Strophe (a javascript library for the browser). Good luck Ariel El miércoles, 23 de mayo de 2012 16:37:42 UTC+2, Ariel escribió: > > Hi everybody, > > I need a django application to embed a chat javascript in th