YKPN#40511 -- Link opnemen in res bon om reservering/melding/afspraak aan te passen

svn path=/Website/branches/v2016.3/; revision=33855
This commit is contained in:
Arthur Egberink
2017-05-15 14:41:15 +00:00
parent 755b5875d7
commit 90bf829e6b

View File

@@ -193,7 +193,85 @@
</tr>
</xsl:template>
<xsl:template name="res_endtext">
<xsl:if test="$srtnotificatiecode != 'RESINF'">
<tr>
<td height="25px"/>
</tr>
<tr>
<td colspan="4" class="value">
Als je de reservering wilt wijzigen of annuleren, klik dan
<xsl:element name="a">
<xsl:attribute name="href"> https://<xsl:value-of select="$FacilitorRoot"/>/default.asp?sso=1&amp;<xsl:value-of select="../bookmarks/reservering"/>
<xsl:value-of select="rsv_ruimte/key"/>
</xsl:attribute>
hier.
</xsl:element>
</td>
</tr>
</xsl:if>
</xsl:template>
<xsl:template name="bez_endtext">
<tr>
<td height="25px"/>
</tr>
<tr>
<td colspan="4" class="value">
Als je de afspraak wilt wijzigen of annuleren, klik dan
<xsl:element name="a">
<xsl:attribute name="href"> https://<xsl:value-of select="$FacilitorRoot"/>/default.asp?sso=1&amp;<xsl:value-of select="../bookmarks/afspraak"/>
<xsl:value-of select="key"/>
</xsl:attribute>
hier.
</xsl:element>
</td>
</tr>
</xsl:template>
<xsl:template match="melding" mode="full">
<xsl:choose>
<xsl:when test="$mode='summary'"></xsl:when>
<xsl:otherwise>
<html>
<xsl:comment>================================ MELDINGEN ==============================</xsl:comment>
<xsl:comment>FACILITOR default XSL template for melding</xsl:comment>
<xsl:call-template name="htmlhead"/>
<xsl:element name="body">
<xsl:if test="$mode!='email'">
<xsl:attribute name="onload">window.print();</xsl:attribute>
</xsl:if>
<xsl:call-template name="pageheader"/>
<xsl:choose>
<xsl:when test="$srtnotificatiecode = 'MLDKTO'">
<xsl:apply-templates select="." mode="kto"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="." mode="include"/>
<table>
<tr>
<td height="25px"/>
</tr>
<tr>
<td class="value">
Als je de melding wilt inzien, klik dan
<xsl:element name="a">
<xsl:attribute name="href"> https://<xsl:value-of select="$FacilitorRoot"/>/default.asp?sso=1&amp;<xsl:value-of select="../bookmarks/melding"/>
<xsl:value-of select="key"/>
</xsl:attribute>
hier.
</xsl:element>
</td>
</tr>
</table>
</xsl:otherwise>
</xsl:choose>
<xsl:call-template name="pagefooter"/>
</xsl:element>
</html>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="afspraak" mode="full">
<xsl:choose>