Xampp and django

2009-10-10 Thread djbahati
Hi All, Am new to django, am developing application but i face a problem in displaying template. The browser does not display any template it just display plain text. am using django 1.1 and xampp 1.7.1. Any idea? --~--~-~--~~~---~--~~ You received this message beca

Re: Xampp and django

2009-10-10 Thread Daniel Roseman
On Oct 10, 3:43 pm, djbahati wrote: > Hi All, > Am new to django, > am developing application but i face a problem in displaying template. > The browser does not display any template it just display plain text. > am using django 1.1 and xampp 1.7.1. Any idea? http://docs.djangoproject.com/en/dev

Re: Xampp and django

2009-10-11 Thread Denis Bahati
Thanx a lot for the information, but i managed to get it working before this information. I have another problem that the __unicode()__ is not working. It just gives me Poll object instead of the name of data from the database, i put the function at the beginning of the line, but if i put a tab to

Re: Xampp and django

2009-10-11 Thread Bayuadji
Hi Denis, have you put self on your unicode function? its __unicode__(self) not __unicode()__ regards djibon On 10/11/09, Denis Bahati wrote: > Thanx a lot for the information, but i managed to get it working before this > information. > I have another problem that the __unicode()__ is not wor

Re: Xampp and django

2009-10-11 Thread Daniel Roseman
On Oct 11, 9:05 am, Denis Bahati wrote: > Thanx a lot for the information, but i managed to get it working before this > information. > I have another problem that the __unicode()__ is not working. It just gives > me Poll object instead of the name of data from the database, i put the > function