From 342780300fbb959fd5b58696f883d8fa0b0d0fb5 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Thu, 6 Jul 2017 17:26:20 -0500 Subject: [PATCH] Fix sublist output in README --- README.rst | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index f72b011..a47dc72 100644 --- a/README.rst +++ b/README.rst @@ -46,12 +46,11 @@ Features * Full admin integration. * ORM integration: - * support for ForeignKey, ManyToManyField, OneToOneField descriptors. - * Filtering/ordering of inherited models (``ArtProject___artist``). - * Filtering model types: ``instance_of(...)`` and ``not_instance_of(...)`` - * Combining querysets of different models (``qs3 = qs1 | qs2``) - * Support for custom user-defined managers. - + * support for ForeignKey, ManyToManyField, OneToOneField descriptors. + * Filtering/ordering of inherited models (``ArtProject___artist``). + * Filtering model types: ``instance_of(...)`` and ``not_instance_of(...)`` + * Combining querysets of different models (``qs3 = qs1 | qs2``) + * Support for custom user-defined managers. * Uses the minumum amount of queries needed to fetch the inherited models. * Disabling polymorphic behavior when needed.