#-- -- Return true if the given entry is an entry type Image -- @param entry the entry to check -- @return true if the entry is an entry type Image --> <#function isEntryTypeImage entry> <#return entry.entryType?has_content && entry.entryType.idType?has_content && entry.entryType.idType == id_entry_type_image> #function> <#-- -- Return true if the given entry is an entry type MyLuteceUser -- @param entry the entry to check -- @return true if the entry is an entry type MyLuteceUser --> <#function isEntryTypeMyLuteceUser entry> <#return entry.entryType?has_content && entry.entryType.idType?has_content && entry.entryType.idType == id_entry_type_mylutece_user> #function> <#-- -- Return true if the given entry is an entry type Geolocation -- @param entry the entry to check -- @return true if the entry is an entry type Geolocation --> <#function isEntryTypeGeolocation entry> <#return entry.entryType?has_content && entry.entryType.idType?has_content && entry.entryType.idType == id_entry_type_geolocation> #function> <#-- -- Build the HTML of the given record field -- @param entry the entry of the record field -- @param recordfield the recordfield -- @param first true if the record field is the first record field of the list of record fields of the given entry -- @return the HTLM code of the record field --> <#macro getRecordFieldHtml entry recordfield first> <#if isEntryTypeGeolocation( entry )> ${entry.getHtmlRecordFieldValue( locale, recordfield, false )} <#if recordfield.field.title == 'address' && recordfield.value?has_content>
#i18n{directory.viewing_directory_record.labelDirectory} |
---|
${directory.title} |
#i18n{directory.viewing_directory_record.labelState} |
${resource_actions.workflow_state.name} |
#i18n{directory.viewing_directory_record.actions} |
<#if item_navigator??> <@item_navigation item_navigator=item_navigator /> #if> <@display_actions resource_actions/> |