1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
---|
2 | |
---|
3 | <xsl:stylesheet version="3.0" |
---|
4 | xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" |
---|
5 | xmlns:ibis="http://www.ibisph.org" |
---|
6 | |
---|
7 | exclude-result-prefixes="ibis" |
---|
8 | > |
---|
9 | <xsl:import href="../Page.xslt"/> |
---|
10 | <xsl:import href="../Indicator.xslt"/> |
---|
11 | |
---|
12 | |
---|
13 | <ibis:doc> |
---|
14 | <name>html/indicator/profile/important_facts/Page</name> |
---|
15 | <summary>Default core code that produces the indicator profile important facts page</summary> |
---|
16 | <description> |
---|
17 | Specific XSLT used to create the indicator profile |
---|
18 | important facts page. |
---|
19 | </description> |
---|
20 | </ibis:doc> |
---|
21 | |
---|
22 | <xsl:param name="Page.pageTitle" ibis:doc="Page's title text based on the 'INDICATOR/TITLE' element."> |
---|
23 | Health Indicator Report Important Facts - <xsl:value-of select="ibis:getIndicatorTitle($indicator)"/> |
---|
24 | </xsl:param> |
---|
25 | <xsl:param name="Page.contentTitle" ibis:doc="Page's content block title text based on the 'INDICATOR/TITLE' element."> |
---|
26 | Important Facts for <xsl:value-of select="ibis:getIndicatorTitle($indicator)"/> |
---|
27 | </xsl:param> |
---|
28 | |
---|
29 | |
---|
30 | <xsl:template name="Page.contentBody" |
---|
31 | ibis:doc="Main page content template which lists the important |
---|
32 | facts 'INDICATOR/xxxxx' element fields." |
---|
33 | > |
---|
34 | <xsl:call-template name="Page.options"> |
---|
35 | <xsl:with-param name="title">Indicator Important Facts Report Options</xsl:with-param> |
---|
36 | <xsl:with-param name="pageType" select="'facts'"/> |
---|
37 | </xsl:call-template> |
---|
38 | |
---|
39 | <xsl:call-template name="Indicator.definition"/> |
---|
40 | |
---|
41 | <xsl:call-template name="Indicator.numerator"/> |
---|
42 | <xsl:call-template name="Indicator.denominator"/> |
---|
43 | |
---|
44 | <xsl:call-template name="Indicator.dataIssues"/> |
---|
45 | |
---|
46 | <xsl:call-template name="Indicator.whyImportant"/> |
---|
47 | |
---|
48 | <xsl:call-template name="Indicator.initiatives"> |
---|
49 | <xsl:with-param name="indicator" select="$indicator"/> |
---|
50 | </xsl:call-template> |
---|
51 | |
---|
52 | <xsl:call-template name="Indicator.otherObjectives"/> |
---|
53 | |
---|
54 | <xsl:call-template name="Indicator.howDoing"/> |
---|
55 | <xsl:call-template name="Indicator.howCompare"/> |
---|
56 | <xsl:call-template name="Indicator.whatDoing"/> |
---|
57 | <xsl:call-template name="Indicator.evidenceBasedPractices"/> |
---|
58 | |
---|
59 | <xsl:call-template name="Indicator.otherInformation"/> |
---|
60 | </xsl:template> |
---|
61 | |
---|
62 | </xsl:stylesheet> |
---|
63 | <!-- ============================= End of File ============================= --> |
---|