Skip to content

Instantly share code, notes, and snippets.

@phpdude
Last active April 11, 2023 23:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save phpdude/8a45e1bd2943fa806aeffee94877680a to your computer and use it in GitHub Desktop.
Save phpdude/8a45e1bd2943fa806aeffee94877680a to your computer and use it in GitHub Desktop.
from django.contrib.admin import ModelAdmin, register, SimpleListFilter
from django.db.models.functions import Length, StrIndex, Substr, NullIf, Coalesce
from django.db.models import Value as V
from .models import Item
class AlphanumericSignatureFilter(SimpleListFilter):
title = 'Signature (alphanumeric)'
parameter_name = 'signature_alphanumeric'
def lookups(self, request, model_admin):
return (
('signature', 'Signature (alphanumeric)'),
)
def queryset(self, request, queryset):
if self.value() == 'signature':
return queryset.order_by(
Coalesce(Substr('signature', V(0), NullIf(StrIndex('signature', V(' ')), V(0))), 'signature'),
Length('signature'),
'signature'
)
@register(Item)
class Item(ModelAdmin):
list_filter = [AlphanumericSignatureFilter]
from django.db import models
class Item(models.Model):
signature = models.CharField('Signatur', max_length=50)
def __str__(self):
return self.signature
@phpdude
Copy link
Author

phpdude commented Dec 6, 2019

Data sorted by natural key
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment