Studiengangsinformationen zeigen nun die Alias-Adressen wenn vorhanden und ein Klick auf den Namen der Person linkt jetzt zum persönlichen Profil.

This commit is contained in:
Manfred Kindl
2013-09-09 19:18:27 +00:00
parent d2ce9633e2
commit facd1a91e4
2 changed files with 37 additions and 12 deletions
+8 -8
View File
@@ -106,29 +106,29 @@ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
</xsl:template>
<xsl:template match="stg_ltg">
<xsl:variable name="mailname" select="email"></xsl:variable>
<p><a href="mailto:{$mailname}"><xsl:value-of select="name" /></a><br />
<xsl:variable name="uid" select="uid"></xsl:variable>
<p><a href="../cis/private/profile/index.php?uid={$uid}"><xsl:value-of select="name" /></a><br />
T: <xsl:value-of select="telefon" /><br />
E: <xsl:variable name="mail" select="email"></xsl:variable>
<a href="mailto:{$mail}"><xsl:value-of select="email" /></a></p>
</xsl:template>
<xsl:template match="gf_ltg">
<xsl:variable name="mailname" select="email"></xsl:variable>
<p><a href="mailto:{$mailname}"><xsl:value-of select="name" /></a><br />
<xsl:variable name="uid" select="uid"></xsl:variable>
<p><a href="../cis/private/profile/index.php?uid={$uid}"><xsl:value-of select="name" /></a><br />
T: <xsl:value-of select="telefon" /><br />
E: <xsl:variable name="mail" select="email"></xsl:variable>
<a href="mailto:{$mail}"><xsl:value-of select="email" /></a></p>
</xsl:template>
<xsl:template match="stv_ltg">
<xsl:variable name="mailname" select="email"></xsl:variable>
<p><a href="mailto:{$mailname}"><xsl:value-of select="name" /></a><br />
<xsl:variable name="uid" select="uid"></xsl:variable>
<p><a href="../cis/private/profile/index.php?uid={$uid}"><xsl:value-of select="name" /></a><br />
T: <xsl:value-of select="telefon" /><br />
E: <xsl:variable name="mail" select="email"></xsl:variable>
<a href="mailto:{$mail}"><xsl:value-of select="email" /></a></p>
</xsl:template>
<xsl:template match="ass">
<xsl:variable name="mailname" select="email"></xsl:variable>
<p><a href="mailto:{$mailname}"><xsl:value-of select="name" /></a><br />
<xsl:variable name="uid" select="uid"></xsl:variable>
<p><a href="../cis/private/profile/index.php?uid={$uid}"><xsl:value-of select="name" /></a><br />
T: <xsl:value-of select="telefon" /><br />
E: <xsl:variable name="mail" select="email"></xsl:variable>
<a href="mailto:{$mail}"><xsl:value-of select="email" /></a></p>