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
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,
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
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
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
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
6 matches
Mail list logo