Merged pull request from kynazz to add support for unicode in sort view title.
Updated readme and version.master
parent
7d0555cc62
commit
661f417a7b
|
|
@ -129,10 +129,12 @@ SortableStackedInline:
|
||||||
class MySortableStackedInline(SortableStackedInline):
|
class MySortableStackedInline(SortableStackedInline):
|
||||||
"""Your inline options go here"""
|
"""Your inline options go here"""
|
||||||
|
|
||||||
|
|
||||||
There are also generic equivalents that you can inherit from:
|
There are also generic equivalents that you can inherit from:
|
||||||
|
|
||||||
from adminsortable.admin import (SortableGenericTabularInline,
|
from adminsortable.admin import (SortableGenericTabularInline,
|
||||||
SortableGenericStackedInline)
|
SortableGenericStackedInline)
|
||||||
|
"""Your generic inline options go here"""
|
||||||
|
|
||||||
|
|
||||||
*** IMPORTANT ***
|
*** IMPORTANT ***
|
||||||
|
|
@ -160,9 +162,8 @@ ordering on top of that just seemed a little much in my opinion.
|
||||||
django-admin-sortable is currently used in production.
|
django-admin-sortable is currently used in production.
|
||||||
|
|
||||||
|
|
||||||
### What's new in 1.4.1?
|
### What's new in 1.4.2?
|
||||||
- Django 1.5 compatibility
|
- Unicode support for the sort view title (thanks @knyazz)
|
||||||
- Support for Generic Inlines (thanks @Hedde!)
|
|
||||||
|
|
||||||
|
|
||||||
### Future
|
### Future
|
||||||
|
|
|
||||||
|
|
@ -14,22 +14,26 @@ class MultipleSortableForeignKeyException(Exception):
|
||||||
|
|
||||||
class Sortable(models.Model):
|
class Sortable(models.Model):
|
||||||
"""
|
"""
|
||||||
Unfortunately, Django doesn't support using more than one AutoField in a model
|
Unfortunately, Django doesn't support using more than one AutoField
|
||||||
or this class could be simplified.
|
in a model or this class could be simplified.
|
||||||
|
|
||||||
`is_sortable` determines whether or not the Model is sortable by determining
|
`is_sortable` determines whether or not the Model is sortable by
|
||||||
if the last value of `order` is greater than the default of 1, which should be
|
determining if the last value of `order` is greater than the default
|
||||||
present if there is only one object.
|
of 1, which should be present if there is only one object.
|
||||||
|
|
||||||
`model_type_id` returns the ContentType.id for the Model that inherits Sortable
|
`model_type_id` returns the ContentType.id for the Model that
|
||||||
|
inherits Sortable
|
||||||
|
|
||||||
`save` the override of save increments the last/highest value of order by 1
|
`save` the override of save increments the last/highest value of
|
||||||
|
order by 1
|
||||||
|
|
||||||
Override `sortable_by` method to make your model be sortable by a foreign key field.
|
Override `sortable_by` method to make your model be sortable by a
|
||||||
Set `sortable_by` to the class specified in the foreign key relationship.
|
foreign key field. Set `sortable_by` to the class specified in the
|
||||||
|
foreign key relationship.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
order = models.PositiveIntegerField(editable=False, default=1, db_index=True)
|
order = models.PositiveIntegerField(editable=False, default=1,
|
||||||
|
db_index=True)
|
||||||
|
|
||||||
# legacy support
|
# legacy support
|
||||||
sortable_by = None
|
sortable_by = None
|
||||||
|
|
@ -41,7 +45,8 @@ class Sortable(models.Model):
|
||||||
@classmethod
|
@classmethod
|
||||||
def is_sortable(cls):
|
def is_sortable(cls):
|
||||||
try:
|
try:
|
||||||
max_order = cls.objects.aggregate(models.Max('order'))['order__max']
|
max_order = cls.objects.aggregate(
|
||||||
|
models.Max('order'))['order__max']
|
||||||
except (TypeError, IndexError):
|
except (TypeError, IndexError):
|
||||||
max_order = 0
|
max_order = 0
|
||||||
return True if max_order > 1 else False
|
return True if max_order > 1 else False
|
||||||
|
|
@ -59,12 +64,14 @@ class Sortable(models.Model):
|
||||||
if isinstance(field, SortableForeignKey):
|
if isinstance(field, SortableForeignKey):
|
||||||
sortable_foreign_keys.append(field)
|
sortable_foreign_keys.append(field)
|
||||||
if len(sortable_foreign_keys) > 1:
|
if len(sortable_foreign_keys) > 1:
|
||||||
raise MultipleSortableForeignKeyException(u'%s may only have one SortableForeignKey' % self)
|
raise MultipleSortableForeignKeyException(
|
||||||
|
u'%s may only have one SortableForeignKey' % self)
|
||||||
|
|
||||||
def save(self, *args, **kwargs):
|
def save(self, *args, **kwargs):
|
||||||
if not self.id:
|
if not self.id:
|
||||||
try:
|
try:
|
||||||
self.order = self.__class__.objects.aggregate(models.Max('order'))['order__max'] + 1
|
self.order = self.__class__.objects.aggregate(
|
||||||
|
models.Max('order'))['order__max'] + 1
|
||||||
except (TypeError, IndexError):
|
except (TypeError, IndexError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue