Last change
on this file since 1033 was 875, checked in by George Lilly, 14 years ago |
broke the stylesheet into pieces with a script to reassemble
|
File size:
1.7 KB
|
Rev | Line | |
---|
[875] | 1 | <!--
|
---|
| 2 | <xsl:if test="a:ContinuityOfCareRecord/a:Body/a:SupportProviders">
|
---|
| 3 | <component>
|
---|
| 4 | <section>
|
---|
| 5 | <title>Support Providers</title>
|
---|
| 6 | <text>
|
---|
| 7 | <table>
|
---|
| 8 | <tbody>
|
---|
| 9 | <tr>
|
---|
| 10 | <th>Role</th>
|
---|
| 11 | <th>Name</th>
|
---|
| 12 | </tr>
|
---|
| 13 | <xsl:for-each select="/a:ContinuityOfCareRecord/a:Body/a:Support/a:SupportProvider">
|
---|
| 14 | <tr>
|
---|
| 15 | <td>
|
---|
| 16 | <xsl:value-of select="a:ActorRole/a:Text"/>
|
---|
| 17 | </td>
|
---|
| 18 | <td>
|
---|
| 19 | <xsl:call-template name="actorName">
|
---|
| 20 | <xsl:with-param name="objID" select="a:Source/a:Actor/a:ActorID"/>
|
---|
| 21 | </xsl:call-template>
|
---|
| 22 | </td>
|
---|
| 23 | </tr>
|
---|
| 24 | </xsl:for-each>
|
---|
| 25 | </tbody>
|
---|
| 26 | </table>
|
---|
| 27 | </text>
|
---|
| 28 | </section>
|
---|
| 29 | </component>
|
---|
| 30 | </xsl:if>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.