<#-- Display the group heading -->
- <#if groupName?has_content>
- ${groupName}
+ <#if groupname?has_content>
+ ${groupname}
#if>
<#-- List the properties in the group -->
diff --git a/webapp/web/templates/freemarker/lib/lib-property.ftl b/webapp/web/templates/freemarker/lib/lib-property.ftl
deleted file mode 100644
index 53fb2d0b1..000000000
--- a/webapp/web/templates/freemarker/lib/lib-property.ftl
+++ /dev/null
@@ -1,43 +0,0 @@
-<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
-
-<#-- Macros for display of individual properties -->
-
-<#--
- Macro: dataPropWrapper
-
- Wrap a dataproperty in the appropriate divs
-
- Usage:
- <@dataPropWrapper id="myId" editStatus=true>
- <#nested>
- @dataPropWrapper>
--->
-
-<#macro dataPropWrapper id editStatus=false>
-
-#macro>
-
-<#---------------------------------------------------------------------------->
-
-<#--
- Macro: dataPropsWrapper
-
- Wrap a dataproperty in the appropriate divs
-
- Usage:
- <@dataPropsWrapper id="myId" editStatus=true>
- <#nested>
- @dataPropsWrapper>
--->
-
-<#macro dataPropsWrapper id editStatus=false>
-
- <@dataPropWrapper id=id editStatus=editStatus>
- <#nested>
- @dataPropWrapper>
-
-#macro>