mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-10 00:42:06 +00:00

Sync up to the same version we have on the commitfest app, which will also be required for eventual django 1.11 support.
44 lines
918 B
Python
44 lines
918 B
Python
from django.db import models
|
|
from django.utils.encoding import python_2_unicode_compatible
|
|
|
|
from ..base import ModelLookup
|
|
from ..registry import registry
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
class Thing(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
description = models.CharField(max_length=100)
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
class Meta:
|
|
ordering = ['id']
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
class OtherThing(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
thing = models.ForeignKey(Thing)
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
class ManyThing(models.Model):
|
|
name = models.CharField(max_length=100)
|
|
things = models.ManyToManyField(Thing)
|
|
|
|
def __str__(self):
|
|
return self.name
|
|
|
|
|
|
class ThingLookup(ModelLookup):
|
|
model = Thing
|
|
search_fields = ('name__icontains', )
|
|
|
|
|
|
registry.register(ThingLookup)
|