I created a content type with Dexterity that includes a schema.URI field, and I want to use Dexterity's standard view. But, the standard view shows this field as regular text and not as hyperlink. I can fix this in a customized view, but I need to use the standard view. Is this possible? how?
Thanks in advance. Here is my field:
enlace = schema.URI(
title=(u"Enlace"),
description=(u"URL"),
required=False
)