diff options
| author | Alexander Gaevsky <sasha@sasha0.ru> | 2016-01-07 11:07:15 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-08 11:06:56 -0500 |
| commit | a839d71d8562abe0b245024e55ca1d02a45e58fd (patch) | |
| tree | 3efcf34ce1d42479ec9202490af91e83a3601644 /tests/admin_views/admin.py | |
| parent | f42ab40b733e9a9a00afd9f68de1f041cb96c7e6 (diff) | |
[1.9.x] Fixed #25997 -- Removed redundant escaping in admin's edit related model popup.
Diffstat (limited to 'tests/admin_views/admin.py')
| -rw-r--r-- | tests/admin_views/admin.py | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/tests/admin_views/admin.py b/tests/admin_views/admin.py index 90603ce828..e6dacd4aa8 100644 --- a/tests/admin_views/admin.py +++ b/tests/admin_views/admin.py @@ -34,16 +34,16 @@ from .models import ( GenRelReference, Grommet, ImplicitlyGeneratedPK, Ingredient, InlineReference, InlineReferer, Inquisition, Language, Link, MainPrepopulated, ModelWithStringPrimaryKey, NotReferenced, OldSubscriber, - OtherStory, Paper, Parent, ParentWithDependentChildren, Person, Persona, - Picture, Pizza, Plot, PlotDetails, PluggableSearchPerson, Podcast, Post, - PrePopulatedPost, PrePopulatedPostLargeSlug, PrePopulatedSubPost, Promo, - Question, Recipe, Recommendation, Recommender, ReferencedByGenRel, - ReferencedByInline, ReferencedByParent, RelatedPrepopulated, Report, - Reservation, Restaurant, RowLevelChangePermissionModel, Section, - ShortMessage, Simple, Sketch, State, Story, StumpJoke, Subscriber, - SuperVillain, Telegram, Thing, Topping, UnchangeableObject, - UndeletableObject, UnorderedObject, UserMessenger, Villain, Vodcast, - Whatsit, Widget, Worker, WorkHour, + OtherStory, Paper, Parent, ParentWithDependentChildren, ParentWithUUIDPK, + Person, Persona, Picture, Pizza, Plot, PlotDetails, PluggableSearchPerson, + Podcast, Post, PrePopulatedPost, PrePopulatedPostLargeSlug, + PrePopulatedSubPost, Promo, Question, Recipe, Recommendation, Recommender, + ReferencedByGenRel, ReferencedByInline, ReferencedByParent, + RelatedPrepopulated, RelatedWithUUIDPKModel, Report, Reservation, + Restaurant, RowLevelChangePermissionModel, Section, ShortMessage, Simple, + Sketch, State, Story, StumpJoke, Subscriber, SuperVillain, Telegram, Thing, + Topping, UnchangeableObject, UndeletableObject, UnorderedObject, + UserMessenger, Villain, Vodcast, Whatsit, Widget, Worker, WorkHour, ) @@ -950,6 +950,8 @@ site.register(ReferencedByInline) site.register(InlineReferer, InlineRefererAdmin) site.register(ReferencedByGenRel) site.register(GenRelReference) +site.register(ParentWithUUIDPK) +site.register(RelatedWithUUIDPKModel) # We intentionally register Promo and ChapterXtra1 but not Chapter nor ChapterXtra2. # That way we cover all four cases: |
