Changeset 19868 in main for trunk/ibisph-view/src/main/webapp/xslt/html/indicator/profile/Page.xslt
- Timestamp:
- 02/19/20 00:49:59 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ibisph-view/src/main/webapp/xslt/html/indicator/profile/Page.xslt
r19867 r19868 68 68 <xsl:template name="Page.options"> 69 69 <xsl:param name="title"/> 70 <xsl:param name="isSummary" select="false()"/> 70 71 71 72 <div class="ContentOptions"> … … 77 78 <td><label for="moreInformation"><h4>More Information:</h4></label></td> 78 79 <td><label for="relatedIndicators"><h4>Related Indicator Reports:</h4></label></td> 80 <td><label for="relatedIndicators"><h4>Associated Health Topics:</h4></label></td> 79 81 </tr> 80 82 <tr> … … 90 92 </option> 91 93 </xsl:for-each> 94 <option value="{concat($ibis.contextPath, 'indicator/summary/', $indicator/NAME, '.html')}"> 95 <xsl:if test="true() = $isSummary"> 96 <xsl:attribute name="selected" select="'selected'"/> 97 </xsl:if> 98 Summary Report 99 </option> 92 100 </select> 93 101 </td> … … 113 121 </select> 114 122 </td> 123 124 <td> 125 <select name="associatedHealthTopics" id="associatedHealthTopics" onchange="location=this.value; this.value='';"> 126 <option value="javascript:location"></option> 127 <xsl:for-each select="$indicator/TOPICS/TOPIC"> 128 <xsl:sort select="SORT_ORDER" order="ascending" data-type="number"/> 129 <option value="{ibis:getCompleteURL(URL)}"><xsl:value-of select="TITLE"/></option> 130 </xsl:for-each> 131 </select> 132 </td> 115 133 </tr> 116 134 </table>
Note: See TracChangeset
for help on using the changeset viewer.