Foundry support für Projektpartner
git-svn-id: https://svn.libreccm.org/ccm/trunk@4754 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
d360bee9ad
commit
929be68c01
|
|
@ -457,4 +457,30 @@
|
|||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="content-item-layout//*[starts-with(name(), 'orgaunit')]//involved-organizations">
|
||||
<xsl:param name="orgaunit-data" tunnel="yes" />
|
||||
|
||||
<xsl:if test="$orgaunit-data/involvedOrganizations">
|
||||
<xsl:apply-templates />
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="content-item-layout//*[starts-with(name(), 'orgaunit')]//involved-organizations//involved-organization">
|
||||
<xsl:param name="orgaunit-data" tunnel="yes" />
|
||||
|
||||
<xsl:variable name="layout-tree" select="./*" />
|
||||
|
||||
<xsl:for-each select="$orgaunit-data/involvedOrganizations/organization">
|
||||
<xsl:apply-templates select="$layout-tree">
|
||||
<xsl:with-param name="involved-organization-name" select="./title" tunnel="yes" />
|
||||
</xsl:apply-templates>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="content-item-layout//*[starts-with(name(), 'orgaunit')]//involved-organizations//involved-organization//involved-organization-name">
|
||||
<xsl:param name="involved-organization-name" tunnel="yes" />
|
||||
|
||||
<xsl:value-of select="$involved-organization-name" />
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
|
|
|||
|
|
@ -201,6 +201,21 @@
|
|||
</div>
|
||||
</if-funding>
|
||||
</div>
|
||||
|
||||
<involved-organizations>
|
||||
<div class="project-partners">
|
||||
<h2>
|
||||
<show-text module="sciproject">project-partners</show-text>
|
||||
</h2>
|
||||
<ul>
|
||||
<involved-organization>
|
||||
<li>
|
||||
<involved-organization-name />
|
||||
</li>
|
||||
</involved-organization>
|
||||
</ul>
|
||||
</div>
|
||||
</involved-organizations>
|
||||
</tab>
|
||||
|
||||
<tab name="desc">
|
||||
|
|
|
|||
|
|
@ -32,6 +32,10 @@
|
|||
<translation lang="de">Projektleitung</translation>
|
||||
<translation lang="en">Project Coordiation</translation>
|
||||
</text>
|
||||
<text id="project-partners">
|
||||
<translation lang="de">Projektpartner</translation>
|
||||
<translation lang="en">Project partners</translation>
|
||||
</text>
|
||||
<text id="sponsor">
|
||||
<translation lang="de">Drittmittelgeber</translation>
|
||||
<translation lang="en">Sponsors</translation>
|
||||
|
|
|
|||
Loading…
Reference in New Issue