Return the model class for this type of content.
(self)
| 163 | ) |
| 164 | |
| 165 | def model_class(self): |
| 166 | """Return the model class for this type of content.""" |
| 167 | try: |
| 168 | return apps.get_model(self.app_label, self.model) |
| 169 | except LookupError: |
| 170 | return None |
| 171 | |
| 172 | def get_object_for_this_type(self, using=None, **kwargs): |
| 173 | """ |