Skip to content
Snippets Groups Projects

F hide properties

Merged Florian Spreckelsen requested to merge f-hide-properties into dev
All threads resolved!
2 files
+ 17
2
Compare changes
  • Side-by-side
  • Inline

Files

+ 9
2
@@ -232,8 +232,15 @@
</xsl:template>
<!-- PROPERTIES -->
<xsl:template match="Property" mode="entity-body">
<!-- all properties are now hidden by default -->
<li class="list-group-item caosdb-v-property-row caosdb-f-entity-property caosdb-v-hidden-property">
<li>
<xsl:choose>
<xsl:when test="'${BUILD_MODULE_EXT_PROPERTY_DISPLAY}'='ENABLED'">
<xsl:attribute name="class">list-group-item caosdb-v-property-row caosdb-f-entity-property caosdb-v-hidden-property</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="class">list-group-item caosdb-v-property-row caosdb-f-entity-property</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:attribute name="id">
<xsl:value-of select="generate-id()"/>
</xsl:attribute>
Loading