📄 c01191dff40d001c189aced87954c28b
字号:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Detail of Community</title>
</head>
<body>
<f:view>
<h:messages errorStyle="color: red" infoStyle="color: green"
layout="table" />
<h1>
Detail of community
</h1>
<h:form>
<h:panelGrid columns="2">
<h:outputText value="CommunityID:" />
<h:outputText value="#{community.community.communityID}"
title="CommunityID" />
<h:outputText value="CommunityName:" />
<h:outputText value="#{community.community.communityName}"
title="CommunityName" />
<h:outputText value="Address:" />
<h:outputText value="#{community.community.address}"
title="Address" />
<h:outputText value="Developer:" />
<h:outputText value="#{community.community.developer}"
title="Developer" />
<h:outputText value="Tel1:" />
<h:outputText value="#{community.community.tel1}" title="Tel1" />
<h:outputText value="Tel2:" />
<h:outputText value="#{community.community.tel2}" title="Tel2" />
<h:outputText value="SellingAgents:" />
<h:outputText value="#{community.community.sellingAgents}"
title="SellingAgents" />
<h:outputText value="Property:" />
<h:outputText value="#{community.community.property}"
title="Property" />
<h:outputText value="PublishTime:" />
<h:outputText value="#{community.community.publishTime}"
title="PublishTime" />
<h:outputText value="State:" />
<h:outputText value="#{community.community.state}" title="State" />
<h:outputText value="Introduce:" />
<h:outputText value="#{community.community.introduce}"
title="Introduce" />
<h:outputText value="Image1:" />
<h:outputText value="#{community.community.image1}" title="Image1" />
<h:outputText value="Image2:" />
<h:outputText value="#{community.community.image2}" title="Image2" />
<h:outputText value="Image3:" />
<h:outputText value="#{community.community.image3}" title="Image3" />
<h:outputText value="Image4:" />
<h:outputText value="#{community.community.image4}" title="Image4" />
<h:outputText value="Image5:" />
<h:outputText value="#{community.community.image5}" title="Image5" />
<h:outputText value="Image6:" />
<h:outputText value="#{community.community.image6}" title="Image6" />
<h:outputText value="Bz:" />
<h:outputText value="#{community.community.bz}" title="Bz" />
</h:panelGrid>
<h:commandLink action="community_edit" value="Edit" />
<br>
<h:commandLink action="community_list" value="Show All Community" />
<br>
<a href="/housepro/index.jsp">Back to index</a>
</h:form>
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -