try and fix ctypes issue
This commit is contained in:
parent
c7bb5c5890
commit
9a80c9f5b9
|
@ -125,7 +125,7 @@ class ItfModel(models.Model):
|
||||||
|
|
||||||
def get_content_type(self):
|
def get_content_type(self):
|
||||||
for c in ContentType.objects.filter(model=self.__class__._meta.module_name):
|
for c in ContentType.objects.filter(model=self.__class__._meta.module_name):
|
||||||
if c.model_class() is not None:
|
if c.model_class() is not None and isinstance(c.model_class(), ItfModel):
|
||||||
return c
|
return c
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,6 @@
|
||||||
<p>
|
<p>
|
||||||
{% for result in page.object_list %}
|
{% for result in page.object_list %}
|
||||||
|
|
||||||
|
|
||||||
<a href="{{ result.object.get_absolute_url }}&search={{ query }}">{{ result.object }}</a>
|
<a href="{{ result.object.get_absolute_url }}&search={{ query }}">{{ result.object }}</a>
|
||||||
{{ result.text|truncatewords:60|markdown|striptags }}
|
{{ result.text|truncatewords:60|markdown|striptags }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user