Return ``True`` if the view should display empty lists and ``False`` if a 404 should be raised instead.
(self)
| 104 | return self.paginate_orphans |
| 105 | |
| 106 | def get_allow_empty(self): |
| 107 | """ |
| 108 | Return ``True`` if the view should display empty lists and ``False`` |
| 109 | if a 404 should be raised instead. |
| 110 | """ |
| 111 | return self.allow_empty |
| 112 | |
| 113 | def get_context_object_name(self, object_list): |
| 114 | """Get the name of the item to be used in the context.""" |
no outgoing calls
no test coverage detected