Re: customizing admin

2005-11-28 Thread Tom Tobin
On 11/29/05, Medium <[EMAIL PROTECTED]> wrote: > > Robert Wittams wrote: > > >Medium wrote: > > > >>4. Can we change the template {{ variable }} to something like > >>${variable} I don't mind the {% %} but {%starttag%}{{var}}{%endtag%}.. > > > >You can assume this is not going to change, it w

Re: customizing admin

2005-11-28 Thread Medium
Robert Wittams wrote: Medium wrote: hi, i'm very new to django (basically a few days) and have read almost all the docs, wikis and mailing list archives (well the topics which interest me at least). I have a few questions I was hoping anyone on the list could help me with concerning custom

New Position at Naples Daily News using Django

2005-11-28 Thread Eric Moritz
One of the most respected and award-winning newspaper Web teams in the world has moved to Florida and is looking for an experienced server-side Web developer. NDN Productions -- the online and new media publishing division of the Naples Daily News -- is looking for a full-time Python programmer t

Re: debug tag

2005-11-28 Thread Adrian Holovaty
On 11/28/05, Andy Shaw <[EMAIL PROTECTED]> wrote: > Can anyone give me any pointers on where to look for the {% debug %} > template tag implementation? For some reason, it's neither working > within my template (it's actually causing an unrecognised tag error) and > it doesn't show up in the admin

debug tag

2005-11-28 Thread Andy Shaw
Can anyone give me any pointers on where to look for the {% debug %} template tag implementation? For some reason, it's neither working within my template (it's actually causing an unrecognised tag error) and it doesn't show up in the admin tag docs, either. (nb: I'm using the current develo

Re: customizing admin

2005-11-28 Thread Robert Wittams
Medium wrote: > > hi, > > i'm very new to django (basically a few days) and have read almost all > the docs, wikis and mailing list archives (well the topics which > interest me at least). I have a few questions I was hoping anyone on the > list could help me with concerning customizing the beha

Multiple ManyToManyFields to the same Model loses getters

2005-11-28 Thread pgross
I've run into a problem with mutliple ManyToMany fields with the same model. Only one set of the get_*_list() methods show up pointing backwards: class Group(meta.Model): owners = meta.ManyToManyField( User, singular='owner', related_name='ownerof') members = meta.ManyToManyField(User, s

Re: mod_python log

2005-11-28 Thread stava
Yup, that took care of it, thanks! /LarS

Re: admin and auto total rows

2005-11-28 Thread tonemcd
Terrific! - as I said in another post, the documentation in Django is *extremely* helpful, and it's great to see the documentation tracking the development so closely. One question - is the new admin framework going to allow me to use the forms type widgets, validators etc. in my own applications

Re: mod_python log

2005-11-28 Thread Christopher Lenz
Am 27.11.2005 um 22:06 schrieb stava: Well, thanks for the input, couldn't get it to work though. I put a few "print >> sys.stderr..." in there, shows up as per usual when running the django server, but they don't show up anywhere in the apache logs. Maybe there's some httpd.conf dependency, I

Re: Session

2005-11-28 Thread PythonistL
Thank you ALL for the explanation. Now I know something more but yet not sure whether the following procedure will work for different users.The procedure is like this: In my web application I would like to tell a user (when he is doing shopping to a shopping cart), that he is signed with his ID. T