ContentType フィールドを持つモデルがあります。
どのモデル メソッドでも、文字列と比較できます。
self.content_type == "construction" # True if ContentObject points to Construction model.
ただし、そのようなことはテンプレートでは機能しないようです。
最初に試したこと
{% if object.content_type == "construction" %}
そして2番目:
def __unicode__(self):
return str(self.content_type)
`{% if object == "construction" %}`
False ですが、{{ object }} はconstruction
.