Alternate authentication

2009-06-16 Thread Daniel Jewett
I have a circumstance that requires me to use an alternative authentication scenario. The authentication to our school's web site/ services is handled by the the hosting service. (There is some sort of syncing that occurs with our local Active Directory database.) I'm installing some Django apps

Re: Alternate authentication

2009-06-18 Thread Daniel Jewett
time debugging it -- see this bug > for more info:http://code.djangoproject.com/ticket/10378 > > > > On Tue, Jun 16, 2009 at 4:20 PM, Daniel Jewett wrote: > > > I have a circumstance that requires me to use an alternative > > authentication scenario. The authenticat

Django admin filters and tagging

2010-11-17 Thread Daniel Jewett
Hello, I have a model that looks like this: class Item(models.Model): ...other fields... tags = TagField() I have not defined any additional methods for tagging on the model. In admin.py: class ItemAdmin(admin.ModelAdmin): list_filter = ('featured', 'available', 'tags',) In admin,

MTM intermediate table data in admin interface...

2006-12-13 Thread Daniel Jewett
Hello all, I have this setup (stripped): class Album(models.Model): title = models.CharField(maxlength=255) ... class Person(models.Model): first_name = models.CharField(maxlength=50, blank=True) last_name = models.CharField(maxlength=100) ... class Performance(models.Model): album = models.For

Re: Looser date entry in admin...

2006-12-15 Thread Daniel Jewett
On Dec 15, 2006, at 12:17 PM, Adrian Holovaty wrote: > I'd suggest using a CharField instead. The downside to this is that > you can't take advantage of date-specific queries, such as retrieving > all the records where the date is in a certain month, but whether > that's a problem depends on you

Django admin pagination zero based?

2017-11-28 Thread Daniel Jewett
I just noticed that the URL get string in my admin app is off by one from the auto generated pagination links. It appears that the pagination URLs are zero based. For example if I'm on page 4 of results according to the pagination links, the URL looks like '?p=3' Is this typical? Any suggestio