Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
ad0f0daf
Kaydet (Commit)
ad0f0daf
authored
May 27, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #24851 -- Fixed crash with reverse one-to-one relation in ModelAdmin.list_display
Forwardport of
2456276b
from stable/1.8.x
üst
80ad5472
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
5 deletions
+17
-5
admin_list.py
django/contrib/admin/templatetags/admin_list.py
+1
-1
1.8.3.txt
docs/releases/1.8.3.txt
+3
-0
admin.py
tests/admin_changelist/admin.py
+1
-1
models.py
tests/admin_changelist/models.py
+4
-0
tests.py
tests/admin_changelist/tests.py
+8
-3
No files found.
django/contrib/admin/templatetags/admin_list.py
Dosyayı görüntüle @
ad0f0daf
...
...
@@ -200,7 +200,7 @@ def items_for_result(cl, result, form):
except
ObjectDoesNotExist
:
result_repr
=
EMPTY_CHANGELIST_VALUE
else
:
if
f
is
None
:
if
f
is
None
or
f
.
auto_created
:
if
field_name
==
'action_checkbox'
:
row_classes
=
[
'action-checkbox'
]
allow_tags
=
getattr
(
attr
,
'allow_tags'
,
False
)
...
...
docs/releases/1.8.3.txt
Dosyayı görüntüle @
ad0f0daf
...
...
@@ -28,3 +28,6 @@ Bugfixes
* Prevented the loss of ``null``/``not null`` column properties during field
renaming of MySQL databases (:ticket:`24817`).
* Fixed a crash when using a reverse one-to-one relation in
``ModelAdmin.list_display`` (:ticket:`24851`).
tests/admin_changelist/admin.py
Dosyayı görüntüle @
ad0f0daf
...
...
@@ -107,7 +107,7 @@ site.register(Parent, NoListDisplayLinksParentAdmin)
class
SwallowAdmin
(
admin
.
ModelAdmin
):
actions
=
None
# prevent ['action_checkbox'] + list(list_display)
list_display
=
(
'origin'
,
'load'
,
'speed'
)
list_display
=
(
'origin'
,
'load'
,
'speed'
,
'swallowonetoone'
)
site
.
register
(
Swallow
,
SwallowAdmin
)
...
...
tests/admin_changelist/models.py
Dosyayı görüntüle @
ad0f0daf
...
...
@@ -83,6 +83,10 @@ class Swallow(models.Model):
ordering
=
(
'speed'
,
'load'
)
class
SwallowOneToOne
(
models
.
Model
):
swallow
=
models
.
OneToOneField
(
Swallow
)
class
UnorderedObject
(
models
.
Model
):
"""
Model without any defined `Meta.ordering`.
...
...
tests/admin_changelist/tests.py
Dosyayı görüntüle @
ad0f0daf
...
...
@@ -27,7 +27,7 @@ from .admin import (
from
.models
import
(
Band
,
Child
,
ChordsBand
,
ChordsMusician
,
Concert
,
CustomIdUser
,
Event
,
Genre
,
Group
,
Invitation
,
Membership
,
Musician
,
OrderedObject
,
Parent
,
Quartet
,
Swallow
,
UnorderedObject
,
Quartet
,
Swallow
,
SwallowOneToOne
,
UnorderedObject
,
)
...
...
@@ -547,8 +547,10 @@ class ChangeListTests(TestCase):
Regression test for #17128
(ChangeList failing under Python 2.5 after r16319)
"""
swallow
=
Swallow
.
objects
.
create
(
origin
=
'Africa'
,
load
=
'12.34'
,
speed
=
'22.2'
)
swallow
=
Swallow
.
objects
.
create
(
origin
=
'Africa'
,
load
=
'12.34'
,
speed
=
'22.2'
)
swallow2
=
Swallow
.
objects
.
create
(
origin
=
'Africa'
,
load
=
'12.34'
,
speed
=
'22.2'
)
swallow_o2o
=
SwallowOneToOne
.
objects
.
create
(
swallow
=
swallow2
)
model_admin
=
SwallowAdmin
(
Swallow
,
custom_site
)
superuser
=
self
.
_create_superuser
(
'superuser'
)
request
=
self
.
_mocked_authenticated_request
(
'/swallow/'
,
superuser
)
...
...
@@ -557,6 +559,9 @@ class ChangeListTests(TestCase):
self
.
assertContains
(
response
,
six
.
text_type
(
swallow
.
origin
))
self
.
assertContains
(
response
,
six
.
text_type
(
swallow
.
load
))
self
.
assertContains
(
response
,
six
.
text_type
(
swallow
.
speed
))
# Reverse one-to-one relations should work.
self
.
assertContains
(
response
,
'<td class="field-swallowonetoone">-</td>'
)
self
.
assertContains
(
response
,
'<td class="field-swallowonetoone">
%
s</td>'
%
swallow_o2o
)
def
test_deterministic_order_for_unordered_model
(
self
):
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment