Ramiro Morales 
							
						 
					 
					
						
						
							
						
						3b32e5cc2d 
					 
					
						
						
							
							[1.5.x] Expanded tests added when fixing  #14529 .  
						
						... 
						
						
						
						To make sure changes in 35d1cd0#19505 .
ad769efa85 
						
						
					 
					
						2012-12-24 18:13:38 -03:00 
						 
				 
			
				
					
						
							
							
								Anssi Kääriäinen 
							
						 
					 
					
						
						
							
						
						8c099ec3ec 
					 
					
						
						
							
							[1.5.x]  Fixed   #19391  -- Oracle specific failure in tests  
						
						... 
						
						
						
						The failure was caused by using None as a choice for a CharField. To
avoid Oracle's "" <-> NULL handling the field type was changed to
IntegerField.
Backpatch of 632cf32b43 
						
						
					 
					
						2012-12-04 23:00:17 +02:00 
						 
				 
			
				
					
						
							
							
								Edward Tjörnhammar 
							
						 
					 
					
						
						
							
						
						7c91b67cfa 
					 
					
						
						
							
							[1.5.x]  Fixed   #17911  -- Ensure that admin readonly fields' display values are shown in change forms when the raw value is None.  
						
						... 
						
						
						
						Backport of 29d59a879e 
						
						
					 
					
						2012-11-25 23:16:44 +01:00 
						 
				 
			
				
					
						
							
							
								Preston Holmes 
							
						 
					 
					
						
						
							
						
						3a0e0230f7 
					 
					
						
						
							
							[1.5.x]  Fixed   #18658  -- Improved ModelAdmin.message_user API  
						
						... 
						
						
						
						Thanks to Lowe Thiderman for the patch and tests 
						
						
					 
					
						2012-11-19 16:03:30 -08:00 
						 
				 
			
				
					
						
							
							
								Julien Phalip 
							
						 
					 
					
						
						
							
						
						c555741aa7 
					 
					
						
						
							
							Fixed   #18530  -- Fixed a small regression in the admin filters where wrongly formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report.  
						
						
						
						
					 
					
						2012-09-15 16:20:56 -07:00 
						 
				 
			
				
					
						
							
							
								Travis Swicegood 
							
						 
					 
					
						
						
							
						
						ccd1bb0d81 
					 
					
						
						
							
							Remove Admin's swallowing of AttributeError ( #16655 ,  #18593 ,  #18747 )  
						
						... 
						
						
						
						During the new-admin changes, catching of AttributeError was added to
the admin.  This patch removes that as it's no longer possible to add a
value to a ModelAdmin that is not available.  Adding an attribute that
can not be called causes an ImproperlyConfigured exception to be raised. 
						
						
					 
					
						2012-09-08 11:20:05 -04:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						d4a0b27838 
					 
					
						
						
							
							[py3] Refactored __unicode__ to __str__.  
						
						... 
						
						
						
						* Renamed the __unicode__ methods
* Applied the python_2_unicode_compatible decorator
* Removed the StrAndUnicode mix-in that is superseded by
  python_2_unicode_compatible
* Kept the __unicode__ methods in classes that specifically
  test it under Python 2 
						
						
					 
					
						2012-08-12 14:44:40 +02:00 
						 
				 
			
				
					
						
							
							
								Julien Phalip 
							
						 
					 
					
						
						
							
						
						01c392623d 
					 
					
						
						
							
							Fixed   #10057  -- Ensured that the 'show_delete' context variable in the admin's change view actually controls the display of the delete button. Thanks to rajeesh for the report, to patcoll for the patch, and to David Gouldin for the test.  
						
						
						
						
					 
					
						2012-07-21 18:10:24 -07:00 
						 
				 
			
				
					
						
							
							
								Claude Paroz 
							
						 
					 
					
						
						
							
						
						f08fa5b555 
					 
					
						
						
							
							Removed unneeded u prefixes  
						
						
						
						
					 
					
						2012-06-19 17:37:28 +02:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						23d230f058 
					 
					
						
						
							
							Merge pull request  #123  from apollo13/ticket18381  
						
						... 
						
						
						
						Fixed  #18381  -- Stopped escaping object ids
when passing them to the contenttypes.shortcut view.
Thanks apollo13 for the patch and dhepper for the review. 
					
						2012-06-08 01:48:41 -07:00 
						 
				 
			
				
					
						
							
							
								Claude Paroz 
							
						 
					 
					
						
						
							
						
						4a103086d5 
					 
					
						
						
							
							Fixed   #18269  -- Applied unicode_literals for Python 3 compatibility.  
						
						... 
						
						
						
						Thanks Vinay Sajip for the support of his django3 branch and
Jannis Leidel for the review. 
						
						
					 
					
						2012-06-07 18:08:47 +02:00 
						 
				 
			
				
					
						
							
							
								Florian Apolloner 
							
						 
					 
					
						
						
							
						
						e1643e3535 
					 
					
						
						
							
							Don't escape object ids when passing to the contenttypes.shortcut view.  
						
						... 
						
						
						
						This commit also changes the string pk to string_pk instead of id, to test
if the admin uses .pk throughout the codebase. 
						
						
					 
					
						2012-06-07 17:52:12 +02:00 
						 
				 
			
				
					
						
							
							
								Julien Phalip 
							
						 
					 
					
						
						
							
						
						d636150e53 
					 
					
						
						
							
							Fixed   #17198  -- Ensured that a deterministic order is used across all database backends for displaying the admin change list's results. Many thanks to Luke Plant for the report and general approach, to everyone involved in the design discussions, and to Carl Meyer for the patch review. Refs  #16819 .  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17635  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2012-03-03 02:13:35 +00:00 
						 
				 
			
				
					
						
							
							
								Julien Phalip 
							
						 
					 
					
						
						
							
						
						f0c2228709 
					 
					
						
						
							
							Fixed   #13068  (again) -- Corrected the admin stacked inline template to allow prepopulated fields to work (Thanks Stanislas Guerra for the report). Also fixed a regression introduced in [16953] where prepopulated fields wouldn't be recognized any more due to the additional "field-" CSS class name prefix.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17562  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2012-02-19 16:42:12 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						4dbeb4bca4 
					 
					
						
						
							
							Fixed   #17515  -- Added ability to override the template of custom admin FilterSpec classes. Thanks, saxix and Julien Phalip.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17483  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2012-02-09 18:59:05 +00:00 
						 
				 
			
				
					
						
							
							
								Julien Phalip 
							
						 
					 
					
						
						
							
						
						0f6cf4aba1 
					 
					
						
						
							
							Improved on r17454 to ensure that collapse.js only gets minified when DEBUG is False.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17455  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2012-02-05 10:26:05 +00:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						554f0601b5 
					 
					
						
						
							
							Stopped unconditionally reversing admin model add/change URLs.  
						
						... 
						
						
						
						Starting with [16857] this could cause HTTP 500 errors when
`ModelAdmin.get_urls()` has been customized to the point it doesn't
provide these standard URLs.
Fixes  #17333 . Refs #15294 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17237  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-12-19 14:59:14 +00:00 
						 
				 
			
				
					
						
							
							
								Julien Phalip 
							
						 
					 
					
						
						
							
						
						8ddecc39db 
					 
					
						
						
							
							Fixed   #17252  -- Fixed a minor regression introduced by the work in  #11868 , where the default sorted columns wouldn't correctly be visually represented in the changelist table headers if those columns referred to non model fields. Thanks to sebastian for the report and patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17143  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-11-22 09:14:09 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
							
						
						5de31cb8cb 
					 
					
						
						
							
							Refs  #17215 : Avoid generating 47 leftover tmp dirs during a clean test run.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17094  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-11-13 19:05:02 +00:00 
						 
				 
			
				
					
						
							
							
								Julien Phalip 
							
						 
					 
					
						
						
							
						
						2e2689c7c0 
					 
					
						
						
							
							Fixed   #15938  -- Prevented the max_length number in the admin prepopulated_fields javascript to be localized when USE_THOUSAND_SEPARATOR is turned on. Thanks to Lev Maximov, Mathieu Agopian and feel.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17033  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-10-26 05:33:17 +00:00 
						 
				 
			
				
					
						
							
							
								Alex Gaynor 
							
						 
					 
					
						
						
							
						
						d362c1546f 
					 
					
						
						
							
							Convert much of the regression tests to use absolute imports.  There's still work to be done though.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16976  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-10-13 18:51:33 +00:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						7b21bfc074 
					 
					
						
						
							
							Improved test isolation of the admin tests and assigned custom admin sites to  
						
						... 
						
						
						
						prevent test order dependant failures.
This involves introducing usage of `TestCase.urls` and implementing proper
admin.py modules for some of the test apps.
Thanks Florian Apolloner for finding the issue and contributing the patch.
Refs #15294  (it solves these problems so the fix for that ticket we are going
to commit doesn't introduce obscure and hard to reproduce test failures when
running the Django test suite.)
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16856  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-09-20 18:16:49 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						d68666700f 
					 
					
						
						
							
							Fixed   #16604  -- Use new save_related hook when saving objects on the changelist, too. Thanks, pdeglopper.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16599  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-08-12 14:14:24 +00:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						87eb3a25aa 
					 
					
						
						
							
							Removed superflous commented-out lines.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16502  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-07-04 12:23:12 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						332a485567 
					 
					
						
						
							
							Fixed   #16115  -- Added ModelAdmin.save_related method to be able to do pre- or post-save operations for objects related to the parent object currently displayed. Thanks, Julien Phalip.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16498  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-07-03 17:56:43 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
							
						
						cb996cce05 
					 
					
						
						
							
							Fixed various bugs related to having multiple columns in admin list_display with the same sort field  
						
						... 
						
						
						
						Thanks to julien for the report
Refs #11868 
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16319  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-06-03 11:54:29 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
							
						
						5434ce231d 
					 
					
						
						
							
							Fixed   #11868  - Multiple sort in admin changelist.  
						
						... 
						
						
						
						Many thanks to bendavis78 for the initial patch, and for input from others.
Also fixed  #7309 . If people were relying on the undocumented default ordering
applied by the admin before, they will need to add 'ordering = ["-pk"]' to
their ModelAdmin.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16316  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-06-02 16:18:47 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
							
						
						8eccb728cc 
					 
					
						
						
							
							Fixed   #15964  - Do not order admin actions by description  
						
						... 
						
						
						
						Thanks to julien for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16162  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-05-05 22:03:17 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						18d2f4a816 
					 
					
						
						
							
							Fixed   #5833  -- Modified the admin list filters to be easier to customize. Many thanks to Honza Král, Tom X. Tobin, gerdemb, eandre, sciyoshi, bendavis78 and Julien Phalip for working on this.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16144  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-05-03 10:44:23 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						6c17190bf8 
					 
					
						
						
							
							Fixed   #11639 ,  #13618  -- Added get_prepopulated_fields method to ModelAdmin and InlineModelAdmin to be able to handle prepopulated fields on a case-by-case basis. Thanks, leanmeandonothingmachine.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16069  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-04-22 12:02:25 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						4e25bc71b1 
					 
					
						
						
							
							Fixed   #15609  -- Fixed some 'raise' statements to use the newer style syntax. Thanks, DaNmarner  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15811  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-03-14 23:00:03 +00:00 
						 
				 
			
				
					
						
							
							
								Ian Kelly 
							
						 
					 
					
						
						
							
						
						8b22f7cf78 
					 
					
						
						
							
							Fixed field names that were preventing the tests from running in Oracle.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15774  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-03-08 19:26:32 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						b921f1bac0 
					 
					
						
						
							
							Fixed   #12475  -- Fixed an edge case with hidden fields in ModelAdmin changelists when used in conjunction with list_display_links or list_editable. Thanks, Simon Meers, Julien Phalip, Karen and master.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15722  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-03-03 13:20:45 +00:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						bd3b5e8c2b 
					 
					
						
						
							
							Fixed   #15517  -- Fixed regression in admin search_fields option introduced in r15526. Thanks Fabian Buechler for the report and fix and Julien Phalip for adding tests.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15677  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-03-01 02:04:35 +00:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						52fc61e0cf 
					 
					
						
						
							
							Fixed   #14529  -- Fixed representation of model names in admin messages after model object changes when the ModelAdmin queryset() uses defer() or only(). Thanks rlaager for report and initial patch, to rasca an julien for help in tracking the problem.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15596  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-02-20 23:09:25 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						75a1aaa1f9 
					 
					
						
						
							
							Fixed   #11513  -- Ensure that the redirect at the end of an object change won't redirect to a page for which the user doesn't have permission. Thanks to rlaager for the report and draft patch, and to Julien Phalip for the final patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15584  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-02-19 14:05:07 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						fe3c9ad551 
					 
					
						
						
							
							Fixed   #14355  -- Ensure that help_text is displayed for readonly fields in the admin. Thanks to jester for the report, and to alexbmeng, subsume, wamberg and Julien Phalip for ther work on the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15582  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-02-19 12:55:09 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						791ecb4be4 
					 
					
						
						
							
							Fixed   #13126  -- Ensured that individual form errors are displayed when errors occur on a list-editable changelist. Thanks to slafs for the report, and to Julien Phalip for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15580  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-02-19 11:48:42 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						74ffca17e2 
					 
					
						
						
							
							Fixed   #10573  -- Corrected autofocus problem in admin when the first widget displayed is a multiwidget. Thanks to rduffield for the report, and to Ramiro and Julien Phalip for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15452  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-02-08 12:00:21 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
							
						
						655d5afea9 
					 
					
						
						
							
							Fixed   #14880  - raw_id_fields in admin does not work when limit_choices_to dictionary has value=False  
						
						... 
						
						
						
						Thanks to smallming for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15348  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-01-28 14:08:42 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
							
						
						c24bdf044b 
					 
					
						
						
							
							Fixed   #15103  - SuspiciousOperation with limit_choices_to and raw_id_fields  
						
						... 
						
						
						
						Thanks to natrius for the report.
This patch also fixes some unicode bugs in affected code.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15347  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-01-28 14:08:25 +00:00 
						 
				 
			
				
					
						
							
							
								Carl Meyer 
							
						 
					 
					
						
						
							
						
						93a4d46184 
					 
					
						
						
							
							Fixed   #14672  - Added admin handling for on_delete=PROTECT. Thanks to jtiai for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15249  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-01-20 00:33:32 +00:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						1c56af676d 
					 
					
						
						
							
							Added tests demonstrating that filtering lookup expression that involve model with inheritance schemes aren't incorrectly blacklisted by the r15031 security fix. Refs.  #15032 .  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15178  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-01-12 23:30:47 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						6bd8c14be9 
					 
					
						
						
							
							Fixed   #14999  -- Ensure that filters on local fields are allowed, and aren't caught as a security problem. Thanks to medhat for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15139  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-01-03 13:56:31 +00:00 
						 
				 
			
				
					
						
							
							
								Alex Gaynor 
							
						 
					 
					
						
						
							
						
						732198ed5c 
					 
					
						
						
							
							Fix a security issue in the admin. Disclosure and new release forthcoming.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15031  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-12-23 03:44:38 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						2c2209b473 
					 
					
						
						
							
							Fixed   #13607  -- Auto-initialize admin's date hierarchy links intelligently. Thanks, Simon Meers.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@14879  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-12-12 22:54:50 +00:00 
						 
				 
			
				
					
						
							
							
								Honza Král 
							
						 
					 
					
						
						
							
						
						dc334a2ba8 
					 
					
						
						
							
							Fixed   #3400  -- Support for lookup separator with list_filter admin option. Thanks to DrMeers and vitek_pliska for the patch!  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@14674  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-11-21 19:29:15 +00:00 
						 
				 
			
				
					
						
							
							
								Alex Gaynor 
							
						 
					 
					
						
						
							
						
						274aba3b9b 
					 
					
						
						
							
							Fixed   #11108  -- added ModelAdmin.delete_model, a hook with which to perform custom pre-post delete behavior.  Thanks to Florian Apolloner for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@14673  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-11-21 19:00:40 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						2ab3b52d2a 
					 
					
						
						
							
							Fixed   #14012  -- Corrected the handling of the create user popup dialog in the admin. Thanks to gk@lka.hu for the report, and Ramiro Morales for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@13501  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-08-06 14:58:05 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						faceca7075 
					 
					
						
						
							
							Fixed   #13301  -- Corrected problem with capitalization of changelist row headers in admin. Thanks to emyller for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@12947  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-04-11 08:35:04 +00:00