Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/admin_inlines
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #24976 -- Fixed missing form label in tabular inline.matiasb2015-10-212-0/+9
| | | | | If the model form had a form field specified, the label rendered as "None".
* Refs #23444 -- Removed ↵Tim Graham2015-09-241-24/+0
| | | | InlineAdminForm.original_content_type_id per deprecation timeline.
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-31/+81
|
* Fixed #25348 -- Removed unused gif/png images from ↵elky2015-09-041-2/+2
| | | | contrib.admin.
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
|
* Fixed #20597 -- Replaced admin GIF/PNG icons by SVGelky2015-08-271-2/+2
|
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-25/+25
| | | | on_delete for ForeignKey/OneToOneField
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-1/+1
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Fixed #21927 -- Made application and instance namespaces ↵Marten Kenbeek2015-06-081-2/+2
| | | | | | | | more distinct. Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
* Fixed #24466 -- Added JavaScript escaping in a couple ↵Tim Graham2015-03-312-6/+27
| | | | | | places in the admin. Thanks Aymeric Augustin and Florian Apolloner for work on the patch.
* Fixed admin selenium tests broken by removal of fixtures.Tim Graham2015-03-051-1/+10
|
* Converted test fixtures to setUpTestData methodsJosh Smeaton2015-03-052-26/+18
|
* Replaced hardcoded URLs in admin_* testsClaude Paroz2015-02-081-43/+47
| | | | | Refs #15779. This will allow easier admin URL changes, when needed. Thanks Simon Charette for the review.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-064-13/+14
|
* Fixed #24149 -- Normalized tuple settings to lists.darkryder2015-02-031-4/+4
|
* Fixed #23995 -- Removed unnecessary calls to ↵Diego Guimarães2014-12-161-12/+0
| | | | self.client.logout() in tests.
* Fixed #23923 -- Promoted Django's deprecation warnings ↵Tim Graham2014-11-291-0/+1
| | | | to errors in runtests.py
* Fixed #23444 -- Deprecated ↵a1tus2014-10-231-0/+24
| | | | django.contrib.admin.helpers.InlineAdminForm.original_content_type_id
* Fixed #13163 -- Added ability to show change links on ↵Nick Sandford2014-07-312-1/+38
| | | | | | inline objects in admin. Thanks DrMeers for the suggestion.
* Fixed #11776 -- Added CSS class for non-field/top of ↵Nick Presta2014-06-021-1/+1
| | | | | | form errors. Thanks Daniel Pope for the suggestion.
* Fixed #22628 -- Took initial forms into account when ↵Stephen Burrows2014-05-161-2/+1
| | | | | | combining FormSet.min_num and FormSet.extra. Forwardport of 79f15ab1ef from stable/1.7.x
* Fixed #17642 -- Added min_num support to modelformsets, ↵Anders Steinlein2014-05-151-2/+60
| | | | | | | | inlines, and the admin. Thanks Stephen Burrows for work on the patch as well. Forwardport of 2914f66983a92fcae55673c517dd8d01e8c238c4 from stable/1.7.x
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-261-1/+1
|
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-10/+10
|
* Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham2014-04-031-4/+4
| | | | Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-3/+3
| | | | Thanks Piotr Kasprzyk for help with the patch.
* Fixed #21382 - Added "has_original" to stacked inlines.Ryan Kaskel2014-02-091-0/+15
| | | | Report and original patch from jrief.
* Fixed #19774 -- Deprecated the contenttypes.generic module.Simon Charette2014-01-261-2/+2
| | | | | | | It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review.
* Imported override_settings from its new location.Aymeric Augustin2013-12-231-2/+1
|
* PEP8 cleanupJason Myers2013-11-033-11/+37
| | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
* Fixed all E261 warningscoagulant2013-11-031-1/+1
|
* Fixed #21299 - Changed filters from title to capfirst on ↵Renato Oliveira2013-10-241-4/+4
| | | | | | | admin inline formsets. Previously there was a mixture of the two which resulted in inconsistent casing.
* Fixed E225 pep8 warnings.Tim Graham2013-10-231-2/+2
|
* Removed import * in tests.Tim Graham2013-10-221-1/+9
| | | | Thanks to flake8 path/to/file.py | awk -F ' ' '{ print $5 }' | sort | uniq
* Fixed #21268 -- Fixed E303 pep8 warningsAlasdair Nicol2013-10-181-1/+0
|
* Fixed assorted flake8 errors.Tim Graham2013-10-111-3/+3
|
* Fixed #18263 -- Corrrected handling of hidden fields in ↵Tim Graham2013-10-073-1/+40
| | | | | | tabular admin inlines. Thanks hvdklauw for the report and patch.
* Removed a ton of unused local varsAlex Gaynor2013-09-081-5/+4
|
* Removed most of absolute_import importsClaude Paroz2013-07-293-5/+1
| | | | | Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
* Fixed #13696 -- ensured inline pk field is renderedKaren Tracey2013-07-213-1/+57
|
* Fixed available_apps for selenium tests.Aymeric Augustin2013-06-101-1/+3
| | | | Refs #20483.
* Fixed #18388 - Added InlineModelAdmin.get_max_num hook.Tim Graham2013-06-022-2/+13
| | | | | Thanks d.willy.c.c@ for the suggestion and Melevir and Areski Belaid for work on the patch.
* Fixed #19425 - Added InlineModelAdmin.get_extra hook.Tim Graham2013-05-303-1/+31
| | | | Thanks dave@ for the suggestion and Rohan Jain for the patch.
* Fixed #19838 -- Admin: Don't leak a 500 HTTP status when ↵Javier Mansilla2013-03-042-1/+47
| | | | | | trying to delete protected FKs. Thanks rafadev for the report and Javier Mansilla for the fix.
* Renamed some tests and removed references to ↵Florian Apolloner2013-02-261-5/+5
| | | | modeltests/regressiontests.
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-266-0/+995