source: ccr2ccd-xslt/trunk/gpl/ccd-references.xsl@ 981

Last change on this file since 981 was 981, checked in by George Lilly, 14 years ago

latest version

File size: 2.9 KB
Line 
1 <xsl:if test="a:ContinuityOfCareRecord/a:References">
2 <component>
3 <section>
4 <title>References</title>
5 <text>
6 <table>
7 <tbody>
8 <tr>
9 <th>Type</th>
10 <th>Date</th>
11 <th>Description</th>
12 <th>Location</th>
13 <th>Source</th>
14 </tr>
15 <xsl:for-each select="/a:ContinuityOfCareRecord/a:References/a:Reference">
16 <tr>
17 <td>
18 <xsl:value-of select="a:Type/a:Text"/>
19 </td>
20 <td>
21 <xsl:call-template name="date:format-date">
22 <xsl:with-param name="date-time" select="a:DateTime/a:ExactDateTime"/>
23 </xsl:call-template>
24 </td>
25 <td>
26 <strong class="clinical">
27 <xsl:value-of select="a:Description/a:Text"/>
28 </strong>
29 </td>
30 <td>
31 <xsl:value-of select="a:Locations/a:Location/a:Description/a:Text"/>
32 </td>
33 <td>
34 <xsl:call-template name="actorName">
35 <xsl:with-param name="objID" select="a:Source/a:Actor/a:ActorID"/>
36 </xsl:call-template>
37 </td>
38 </tr>
39 </xsl:for-each>
40 </tbody>
41 </table>
42 </text>
43 </section>
44 </component>
45 </xsl:if>
46 -->
47 <!--
Note: See TracBrowser for help on using the repository browser.