{% if has_permission("blog_post", "filename.read", instance) %} {% if "filename" not in skip_list %}
  • {{ _("filename") }}: {% if not instance.filename %}{% else %} {{ instance.filename }}
  • {% endif %} {% endif %} {% endif %} {% if has_permission("blog_post", "title.read", instance) %} {% if "title" not in skip_list %}
  • {{ _("title") }}: {% if not instance.title %}{% else %} {{ instance.title }}
  • {% endif %} {% endif %} {% endif %} {% if has_permission("blog_post", "body.read", instance) %} {% if "body" not in skip_list %}
  • {{ _("body") }}: {% if not instance.body %}{% else %} {{ instance.body }}
  • {% endif %} {% endif %} {% endif %} {% if has_permission("blog_post", "tag.read", instance) %} {% if "tag" not in skip_list %}
  • {{ _("tags") }}: {% if not instance.tags %}{% else %}
  • {% endif %} {% endif %} {% endif %} {% if has_permission("blog_post", "created_dt.read", instance) %} {% if "created_dt" not in skip_list %}
  • {{ _("created_dt") }}: {% if not instance.created_dt %}{% else %} {{ instance.created_dt }}
  • {% endif %} {% endif %} {% endif %} {% if has_permission("blog_post", "updated_dt.read", instance) %} {% if "updated_dt" not in skip_list %}
  • {{ _("updated_dt") }}: {% if not instance.updated_dt %}{% else %} {{ instance.updated_dt }}
  • {% endif %} {% endif %} {% endif %}