mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-04-19 22:31:04 +00:00
10 lines
318 B
Python
10 lines
318 B
Python
|
|
from django.db.models.fields.related import ForeignKey
|
||
|
|
|
||
|
|
|
||
|
|
class SortableForeignKey(ForeignKey):
|
||
|
|
"""
|
||
|
|
Field simply acts as a flag to determine the class to sort by.
|
||
|
|
This field replaces previous functionality where `sortable_by` was definied as a model property
|
||
|
|
that specified another model class.
|
||
|
|
"""
|