mirror of
https://github.com/jazzband/django-admin-sortable.git
synced 2026-04-21 07:11:06 +00:00
Merge pull request #32 from knyazz/master
Not works with cyrillic verbose_name_plural
This commit is contained in:
commit
7d0555cc62
2 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
VERSION = (1, 4, 1) # following PEP 386
|
||||
VERSION = (1, 4, 2) # following PEP 386
|
||||
DEV_N = None
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ class SortableAdmin(ModelAdmin):
|
|||
verbose_name_plural = opts.verbose_name_plural
|
||||
|
||||
context = {
|
||||
'title': 'Drag and drop {0} to change display order'.format(
|
||||
'title': u'Drag and drop {0} to change display order'.format(
|
||||
capfirst(verbose_name_plural)),
|
||||
'opts': opts,
|
||||
'app_label': opts.app_label,
|
||||
|
|
|
|||
Loading…
Reference in a new issue