Hi Everybody,
I would like to add a complex search form in the change_list.html admin
template (for example to add possibility to search something from date
to date)
Is there a way to do this?
Thanks in advance.
Marco Minutoli
--
You received this message because you are subscribed to the Google
I have these three models:
class Address(models.Model):
name = models.CharField(max_length=100)
## many other fields ##
class Meta:
ordering = ('name',)
def __unicode__(self):
return self.name
class Organization(models.Model):
name = models.CharField(max_le
I have this model:
class Ticket(models.Model):
## ForeignKey
project = models.ForeignKey (
'Project',
null=True,
blank=True,
verbose_name="Project",
)
submitter = models.ForeignKey (
User,
related_name="submitter",
verbose_na
3 matches
Mail list logo