Re: [Django] #10622: List editable breaks with model inheritance

2009-03-29 Thread Django
#10622: List editable breaks with model inheritance
---+
  Reporter:  oyvind| Owner:  nobody 
  
Status:  closed| Milestone:  1.1
  
 Component:  django.contrib.admin  |   Version:  SVN
  
Resolution:  fixed |  Keywords:  list_editable 
inheritance
 Stage:  Accepted  | Has_patch:  1  
  
Needs_docs:  0 |   Needs_tests:  0  
  
Needs_better_patch:  0 |  
---+
Changes (by Alex):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in #10178

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #10622: List editable breaks with model inheritance

2009-03-25 Thread Django
#10622: List editable breaks with model inheritance
---+
  Reporter:  oyvind| Owner:  nobody 
  
Status:  new   | Milestone:  1.1
  
 Component:  django.contrib.admin  |   Version:  SVN
  
Resolution:|  Keywords:  list_editable 
inheritance
 Stage:  Accepted  | Has_patch:  1  
  
Needs_docs:  0 |   Needs_tests:  0  
  
Needs_better_patch:  0 |  
---+
Changes (by Alex):

  * has_patch:  0 => 1
  * stage:  Unreviewed => Accepted

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #10622: List editable breaks with model inheritance

2009-03-25 Thread Django
#10622: List editable breaks with model inheritance
---+
  Reporter:  oyvind| Owner:  nobody 
  
Status:  new   | Milestone:  1.1
  
 Component:  django.contrib.admin  |   Version:  SVN
  
Resolution:|  Keywords:  list_editable 
inheritance
 Stage:  Unreviewed| Has_patch:  0  
  
Needs_docs:  0 |   Needs_tests:  0  
  
Needs_better_patch:  0 |  
---+
Comment (by oyvind):

 In file /home/oyvind/code/django/contrib/admin/templatetags/admin_list.py

 line 240, in items_for_result

 {{{
 #!python
 yield mark_safe(force_unicode(form[cl.model._meta.pk.attname]))
 }}}

 Changed to

 {{{
 #!python
 yield mark_safe(force_unicode(form[cl.model._meta.pk.name]))
 }}}

 name is used here:

 http://code.djangoproject.com/browser/django/trunk/django/forms/models.py#L444

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #10622: List editable breaks with model inheritance

2009-03-25 Thread Django
#10622: List editable breaks with model inheritance
---+
  Reporter:  oyvind| Owner:  nobody 
  
Status:  new   | Milestone:  1.1
  
 Component:  django.contrib.admin  |   Version:  SVN
  
Resolution:|  Keywords:  list_editable 
inheritance
 Stage:  Unreviewed| Has_patch:  0  
  
Needs_docs:  0 |   Needs_tests:  0  
  
Needs_better_patch:  0 |  
---+
Changes (by julien):

  * needs_better_patch:  => 0
  * needs_docs:  => 0
  * needs_tests:  => 0
  * milestone:  => 1.1

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Django] #10622: List editable breaks with model inheritance

2009-03-25 Thread Django
#10622: List editable breaks with model inheritance
---+
 Reporter:  oyvind |   Owner:  nobody
   Status:  new|   Milestone:
Component:  django.contrib.admin   | Version:  SVN   
 Keywords:  list_editable inheritance  |   Stage:  Unreviewed
Has_patch:  0  |  
---+
 I register a model in the adminsite that is inherited from another model
 with list_editable on some fields, then add a entry. When I am redirected
 to the change_list I get a traceback about a missing field in the form.

 http://dpaste.com/18906/ - traceback

 http://dpaste.com/18895/ - example app

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---