Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content.incomeRange / ibssIncomeRangeDetails.jsp @ 71:e268a6198394

History | View | Annotate | Download (4.01 KB)

1
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL" %>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
3
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
4

    
5
<h3 class="title"><strong><bean:message key="content.mk.desc.details.income.range" /></strong></h3><br/>
6

    
7
<h5><bean:write name="contentForm" property="categoryName"/></h5><br/>
8
<table id="errorTable">
9
<tr>
10
	<td>
11
		<span id="serverSideError" class="error"><jsp:include flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span>
12
	</td>
13
</tr>
14
</table>
15

    
16
<bean:define id="incomeRangeBean" name="contentForm" property="incomeRangeBean" />
17
<table class="tabularForm">
18
	<tr><td colspan="3">&nbsp;</td></tr>
19
	<tr>
20
		<td width="10%">&nbsp;</td>
21
		<td><bean:message key="content_income_range_code"></bean:message>:</td>
22
		<td><strong><c:out value="${incomeRangeBean.map.incomeRangeCode}"/></strong></td>
23
	</tr>
24
	<tr>
25
		<td width="10%">&nbsp;</td>
26
		<td><bean:message key="content_income_range_desc"></bean:message>:</td>
27
		<td><strong>
28
			<c:choose>
29
				<c:when test="${not empty incomeRangeBean.map.incomeRangeDesc}">
30
					<c:out value="${incomeRangeBean.map.incomeRangeDesc}"/>
31
				</c:when>
32
				<c:otherwise>-</c:otherwise>
33
			</c:choose>
34
		</strong></td>
35
	</tr>
36
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
37
	<tr>
38
		<td width="10%">&nbsp;</td>
39
		<td><bean:message key="content_income_range_desc_ML"></bean:message>:</td>
40
		<td><strong>
41
			<c:choose>
42
				<c:when test="${not empty incomeRangeBean.map.incomeRangeDescML}">
43
					<c:out value="${incomeRangeBean.map.incomeRangeDescML}"/>
44
				</c:when>
45
				<c:otherwise>-</c:otherwise>
46
			</c:choose>
47
		</strong></td>
48
	</tr>
49
	</c:if>
50
	<tr>
51
		<td colspan=1>&nbsp;</td>
52
	</tr>
53
	<tr>
54
		<td width="10%">&nbsp;</td>
55
		<td>Creation Date:</td>
56
		<td><strong>
57
			<c:choose>
58
				<c:when test="${not empty incomeRangeBean.map.creationTime}">
59
					<c:out value="${incomeRangeBean.map.creationTime}"/>
60
				</c:when>
61
				<c:otherwise>-</c:otherwise>
62
			</c:choose>
63
		</strong></td>
64
	</tr>
65
	<tr>
66
		<td width="10%">&nbsp;</td>
67
		<td>Last Modified:</td>
68
		<td><strong>
69
			<c:choose>
70
				<c:when test="${not empty incomeRangeBean.map.lastModTime}">
71
					<c:out value="${incomeRangeBean.map.lastModTime}"/>
72
				</c:when>
73
				<c:otherwise>-</c:otherwise>
74
			</c:choose>
75
		</strong></td>
76
	</tr>
77
	<tr><td colspan="3">&nbsp;</td></tr>
78
</table>
79
<c:if test="${contentForm.map.hasContentEditAccess eq true}">
80
<htmlEL:form action="/ss105/incomeRangeEdit.do">
81
	<htmlEL:hidden property="ID" name="incomeRangeBean"></htmlEL:hidden>
82
	<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
83
		<bean:message key="general.button.edit"/>						
84
	</htmlEL:submit>
85
</htmlEL:form>
86
</c:if>
87
<c:if test="${contentForm.map.hasContentDeleteAccess eq true}">
88
<htmlEL:form action="/ss105/incomeRangeDelete.do">
89
	<c:set var="name" value="${incomeRangeBean.map.incomeRangeCode}"></c:set>
90
	<htmlEL:hidden property="ID" name="incomeRangeBean"></htmlEL:hidden>
91
	<htmlEL:hidden property="name" value="${name}"></htmlEL:hidden>
92
	<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
93
		<bean:message key="general.button.delete"/>						
94
	</htmlEL:submit>
95
</htmlEL:form>
96
</c:if>
97
<c:choose>
98
	<c:when test="${contentForm.map.isSearch eq true}">
99
		<htmlEL:form action="/ss105/searchIncomeRangeResult.do?p=${incomeRangeBean.map.currentPage}">
100
			<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
101
				<bean:message key="general.button.back"/>						
102
			</htmlEL:submit>
103
		</htmlEL:form>
104
	</c:when>
105
	<c:otherwise>
106
		<htmlEL:form action="/ss105/subContentCategory.do?p=${incomeRangeBean.map.currentPage}">
107
			<htmlEL:hidden property="categoryID" value="${contentForm.map.categoryID}"></htmlEL:hidden>
108
			<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
109
				<bean:message key="general.button.back"/>						
110
			</htmlEL:submit>
111
		</htmlEL:form>
112
	</c:otherwise>
113
</c:choose>