如何在户外覆盖ftl

问题描述 投票:0回答:1

[我是alfresco的新手,并使用Alfresco6。我试图覆盖colleagues.get.html.ftl文件,以便更改站点成员破折号的显示。原始的ftl具有以下代码段:

 <div class="person">
      <#-- LIST - ITEM - PERSON -->
      <@markup id="list-item-person">
          <h3><a href="${url.context}/page/user/${m.authority.userName?url}/profile" class="theme-color-1">${m.authority.firstName?html} <#if m.authority.lastName??>${m.authority.lastName?html}</#if></a> 
          </h3>
      </@markup>

      <#-- LIST - ITEM - ROLE -->
      <@markup id="list-item-role">
           <div>${msg("role." + m.role)}</div>
      </@markup>
 </div>

我只想显示firstName,而不是lastNameuserName

这是我所做的。

  1. 我已将原始代码复制到名为同事.get.html.ftl的文件中>
  2. 我修改了html。
  3. 我以为这将覆盖原始文件。但是,当我重新启动服务器时,我的更改未得到反映。如何纠正呢?

我不了解户外活动,并且使用Alfresco6。我正在尝试覆盖boss.get.html.ftl文件,以便更改站点成员仪表板的显示。原始的ftl具有以下代码段:<...>

alfresco alfresco-share alfresco-enterprise
1个回答
0
投票

首先,我假设您使用的是基于Docker和Maven的Alfresco SDK 4.0.0。这使得进行这种定制的工作效率更高。

© www.soinside.com 2019 - 2024. All rights reserved.