Re: Lost in the Admin section...

2006-08-23 Thread Sean Schertell
On Aug 23, 2006, at 5:32 PM, Reinhard Knobelspies wrote: Thanks for all your help so far everyone. So I'm still in search of answers to these questions: (2) The 24 hour clock widget doesn't work for me. This is a nightclub so shows are almost always listed as 7:00pm or 12:30am etc. (am/pm). Is

Re: Lost in the Admin section...

2006-08-23 Thread Reinhard Knobelspies
Regarding (7) and (8) you might want to have a look at http://www.vonautomatisch.at/django/filebrowser/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to djan

Re: Lost in the Admin section...

2006-08-22 Thread Sean Schertell
On Aug 23, 2006, at 2:48 PM, Burhan wrote: > return self.date.strftime("%b %d %Y") Thanks Burhan, I actually tried that and it didn't work. But now I try it again and it works great. I guess I must have had some kind of syntax error last time. Anyway -- that's the stuff. One down, seven to

Re: Lost in the Admin section...

2006-08-22 Thread Sean Schertell
On Aug 23, 2006, at 1:59 PM, Bryan Murdock wrote: > > On 8/22/06, Sean Schertell <[EMAIL PROTECTED]> wrote: >> (4) I don't want to use Users/Groups/Sites at all. What's the best >> way to make it completely go away? > > I think if you remove them from your INSTALLED_APPS setting they will > prob

Re: Lost in the Admin section...

2006-08-22 Thread Burhan
Finally, something I do know about because I struggled with the same problem! > (1) My model includes an Event class. Events should be displayed > using the date as their name. So the name of the event might be > "August 25th, 2006". But if I add a def(self): __str__(self.date) to > the class, I

Re: Lost in the Admin section...

2006-08-22 Thread Bryan Murdock
On 8/22/06, Sean Schertell <[EMAIL PROTECTED]> wrote: > (4) I don't want to use Users/Groups/Sites at all. What's the best > way to make it completely go away? I think if you remove them from your INSTALLED_APPS setting they will probably go away. I haven't tried it yet, you might need to ./mana

Lost in the Admin section...

2006-08-22 Thread Sean Schertell
Hi Guys, A few things I'm trying to figure out -- any pointers would be great! (1) My model includes an Event class. Events should be displayed using the date as their name. So the name of the event might be "August 25th, 2006". But if I add a def(self): __str__(self.date) to the class, I