Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssSecurityQuesDetails.jsp @ 90:a033e3985176

History | View | Annotate | Download (3.3 KB)

1 0:ea666cc7880e hadi
<%@ 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:write name="contentForm" property="contentTypeCode"/></strong></h3><br/>
6
7
<h5><bean:write name="contentForm" property="categoryName"/></h5><br/>
8
9
<bean:define id="securityQuesBean" name="contentForm" property="securityQuesBean" />
10
<table class="tabularForm">
11
	<tr><td colspan="3">&nbsp;</td></tr>
12
	<tr>
13
		<td width="10%">&nbsp;</td>
14
		<td><bean:message key="content_security_ques_code"/></td>
15
		<td><strong><c:out value="${securityQuesBean.map.quesCode}"/></strong></td>
16
	</tr>
17
	<tr>
18
		<td width="10%">&nbsp;</td>
19
		<td><bean:message key="content_security_ques_desc"/>:</td>
20
		<td><strong>
21
			<c:choose>
22
				<c:when test="${not empty securityQuesBean.map.quesDesc}">
23
					<c:out value="${securityQuesBean.map.quesDesc}"/>
24
				</c:when>
25
				<c:otherwise>-</c:otherwise>
26
			</c:choose>
27
		</strong></td>
28
	</tr>
29
	<c:if test="${secondLanguageSupportViewBean.map.secondLanguageSupportView eq true}">
30
		<tr>
31
		<td width="10%">&nbsp;</td>
32
			<td><bean:message key="content_security_ques_desc_ML"/>:</td>
33
		<td><strong>
34
			<c:choose>
35
				<c:when test="${not empty securityQuesBean.map.quesDescML}">
36
					<c:out value="${securityQuesBean.map.quesDescML}"/>
37
				</c:when>
38
				<c:otherwise>-</c:otherwise>
39
			</c:choose>
40
		</strong></td>
41
	</tr>
42
	</c:if>
43
	<tr>
44
		<td width="10%">&nbsp;</td>
45
		<td><bean:message key="content_security_ques_reference"/>:</td>
46
		<td><strong>
47
			<c:choose>
48
				<c:when test="${not empty securityQuesBean.map.quesReference}">
49
					<c:out value="${securityQuesBean.map.quesReference}"/>
50
				</c:when>
51
				<c:otherwise>-</c:otherwise>
52
			</c:choose>
53
		</strong></td>
54
	</tr>
55
	<tr>
56
		<td width="10%">&nbsp;</td>
57
		<td><bean:message key="content_security_ques_creation_date"/>:</td>
58
		<td><strong>
59
			<c:choose>
60
				<c:when test="${not empty securityQuesBean.map.creationTime}">
61
					<c:out value="${securityQuesBean.map.creationTime}"/>
62
				</c:when>
63
				<c:otherwise>-</c:otherwise>
64
			</c:choose>
65
		</strong></td>
66
	</tr>
67
	<tr>
68
		<td width="10%">&nbsp;</td>
69
		<td><bean:message key="content_security_ques_last_modified"/>:</td>
70
		<td><strong>
71
			<c:choose>
72
				<c:when test="${not empty securityQuesBean.map.lastModTime}">
73
					<c:out value="${securityQuesBean.map.lastModTime}"/>
74
				</c:when>
75
				<c:otherwise>-</c:otherwise>
76
			</c:choose>
77
		</strong></td>
78
	</tr>
79
	<tr><td colspan="3">&nbsp;</td></tr>
80
</table>
81
<c:choose>
82
	<c:when test="${contentForm.map.isSearch eq true}">
83
		<htmlEL:form action="/ss105/searchSecurityQuesResult.do?p=${securityQuesBean.map.currentPage}">
84
			<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
85
				<bean:message key="general.button.back"/>
86
			</htmlEL:submit>
87
		</htmlEL:form>
88
	</c:when>
89
	<c:otherwise>
90
		<htmlEL:form action="/ss105/subContentCategory.do?p=${securityQuesBean.map.currentPage}">
91
			<htmlEL:hidden property="categoryID" value="${contentForm.map.categoryID}"></htmlEL:hidden>
92
			<htmlEL:submit property="action" styleClass="button floatRight" onclick="overlay();">
93
				<bean:message key="general.button.back"/>
94
			</htmlEL:submit>
95
		</htmlEL:form>
96
	</c:otherwise>
97
</c:choose>