diff options
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/DiveLog.xslt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xslt/DiveLog.xslt b/xslt/DiveLog.xslt index b4bab8905..9855ae34e 100644 --- a/xslt/DiveLog.xslt +++ b/xslt/DiveLog.xslt @@ -62,6 +62,9 @@ <notes> <xsl:value-of select="notes"/> <xsl:value-of select="concat($lf, 'Weather: ', @Weather, $lf, 'Visibility: ', @Visibility)"/> + <xsl:if test="@Boat != '' and @Boat != ' '"> + <xsl:value-of select="concat($lf, 'Boat: ', @Boat)"/> + </xsl:if> </notes> <cylinder> |