Re: doc question

2007-08-30 Thread Sheriff26
thanks !!! On Aug 30, 1:01 pm, Paul Rauch <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Sheriff26 schrieb: > > > hi all > > > Where can I find all Admin class stuff like list_display, > > list_filter, order

doc question

2007-08-30 Thread Sheriff26
hi all Where can I find all Admin class stuff like list_display, list_filter, ordering, search_fields ? I have readed the documentation, ... but i don't find only a few. I suppose there are mor options. Thanks --~--~-~--~~~---~--~~ You received this message bec

Re: project don't apear in the admin page

2007-08-29 Thread Sheriff26
solved. I don't added everywhere class Admin: pass On Aug 29, 9:44 am, Sheriff26 <[EMAIL PROTECTED]> wrote: > hi all... > > I have a problem. > > After I edited the models.py, > and added class Admin: pass, > and off course in settings.py 'mysite.myproject&

project don't apear in the admin page

2007-08-28 Thread Sheriff26
hi all... I have a problem. After I edited the models.py, and added class Admin: pass, and off course in settings.py 'mysite.myproject' it don't apear in the admin page!! Why ?? What I do wrong ? this is the code of models.py models.py from django.db import models import datetime class

Re: problems with tutotial !?

2007-08-28 Thread Sheriff26
i have try'd to go to url: http://192.168.1.1:8800/admin/polls/poll/ and i recive this error: AttributeError at /admin/polls/poll/ 'NoneType' object has no attribute 'manager' Request Method: GET Request URL:http://192.168.1.1:8800/admin/polls/poll/ Exception Type: AttributeE

Re: problems with tutotial !?

2007-08-28 Thread Sheriff26
ssapear from admin. If I change it back, it doesn't apear back in admin. Why ? Is that normal ? On Aug 28, 12:28 pm, "arcr. ." <[EMAIL PROTECTED]> wrote: > Hi Sheriff, > > Have you edit the view.py and urls.py? > > On 8/28/07, Sheriff26 <[EMAIL PROTECT

problems with tutotial !?

2007-08-28 Thread Sheriff26
Hi. I'm new here. I try to follow the tutorial, but I have some problems. When I changed from (tutorial part two): class Choice(models.Model): poll = models.ForeignKey(Poll) choice = models.CharField(max_length=200) votes = models.IntegerField() TO class Choice(models.Model):