<xsl:if test="goobi:log/goobi:file">
<fo:page-sequence master-reference="A5">
<fo:flow flow-name="xsl-region-body" font-family="opensans, unicode">
<!-- title of process -->
<fo:block text-align="center" font-weight="bold" font-size="11pt" margin-top="0pt">
<xsl:text disable-output-escaping="yes">Schadensdokumentation für: </xsl:text>
<xsl:value-of select="goobi:title"/>
<!-- // title of process -->
<fo:block border-top-width="1pt" border-top-style="solid" border-top-color="#cccccc" margin-top="10pt"/>
<!-- show all images uploaded into the process log -->
<xsl:for-each select="goobi:log/goobi:file">
<xsl:if test="not(position() > 20)">
<fo:block text-align="center" font-size="12pt" margin-top="10pt">
<fo:external-graphic src="url('{@url}')" content-height="80mm"/>
<fo:block text-align="center" font-size="9pt" margin-top="5pt">
<xsl:value-of select="@comment" />
<!-- // show all images uploaded into the process log -->