Changeset 3442
- Timestamp:
- 02/21/08 02:16:21 (11 months ago)
- Files:
-
- openmrs/branches/report_api_refactoring/web/WEB-INF/view/hackathon/localHeader.jsp (modified) (1 diff)
- openmrs/branches/report_api_refactoring/web/WEB-INF/view/hackathon/reportSchemaXmlForm.jsp (modified) (1 diff)
- openmrs/branches/report_api_refactoring/web/WEB-INF/view/hackathon/runReportList.jsp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/report_api_refactoring/web/WEB-INF/view/hackathon/localHeader.jsp
r3421 r3442 17 17 </li> 18 18 </openmrs:hasPrivilege> 19 <openmrs:extensionPoint pointId="org.openmrs.admin.hackathon.localHeader" type="html"> 20 <c:forEach items="${extension.links}" var="link"> 21 <li <c:if test="${fn:endsWith(pageContext.request.requestURI, link.key)}">class="active"</c:if> > 22 <a href="${pageContext.request.contextPath}/${link.key}"><spring:message code="${link.value}"/></a> 23 </li> 24 </c:forEach> 25 </openmrs:extensionPoint> 26 19 27 </ul> openmrs/branches/report_api_refactoring/web/WEB-INF/view/hackathon/reportSchemaXmlForm.jsp
r3421 r3442 7 7 8 8 <h2><spring:message code="Hackathon.reportSchemaXml.title" /></h2> 9 10 <table> 11 <tr> 12 <openmrs:extensionPoint pointId="org.openmrs.admin.hackathon.reportSchemaXml" type="html"> 13 <c:forEach items="${extension.links}" var="link"> 14 <td <c:if test="${fn:endsWith(pageContext.request.requestURI, link.key)}">class="active"</c:if> > 15 <a href="${pageContext.request.contextPath}/${link.key}?id=${param.reportSchemaId}"><spring:message code="${link.value}"/></a> 16 </td> 17 </c:forEach> 18 </openmrs:extensionPoint> 19 </tr> 20 </table> 9 21 10 22 <spring:hasBindErrors name="xml"> openmrs/branches/report_api_refactoring/web/WEB-INF/view/hackathon/runReportList.jsp
r3421 r3442 8 8 <h2><spring:message code="Hackathon.reports.title" /></h2> 9 9 10 <br/> 10 <br/><br/> 11 11 12 12 <c:if test="${fn:length(reports) == 0}"> … … 15 15 16 16 <c:if test="${fn:length(reports) != 0}"> 17 <spring:message code="Hackathon.reports.pickReport" /> 17 <div class="boxHeader"> 18 <b><spring:message code="Hackathon.reports.pickReport" /></b> 19 </div> 20 <div class="box"> 18 21 <table cellpadding="2" cellspacing="0"> 19 22 <tr> 20 <t d></td>21 <t d style="padding-left: 3em"><spring:message code="general.description"/></td>22 <t d style="padding-left: 3em"><spring:message code="Hackathon.reports.lastRunHeader"/></td>23 <th></th> 24 <th style="padding-left: 3em"><spring:message code="general.description"/></th> 25 <th style="padding-left: 3em"><spring:message code="Hackathon.reports.lastRunHeader"/></th> 23 26 </tr> 24 27 <c:forEach var="report" items="${reports}" varStatus="status"> … … 38 41 </c:forEach> 39 42 </table> 43 </div> 40 44 </c:if> 41 45