Project

General

Profile

1
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
2
<%@ taglib uri="/tags/struts-html" prefix="html" %>
3
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
4

    
5
<logic:notPresent name="org.apache.struts.action.MESSAGE" scope="application">
6
  <span class="error">
7
    <bean:message key="message.notLoaded"/>  
8
  </span>
9
</logic:notPresent>
10

    
11
<table class="info">
12
  <tbody>
13
<logic:notEmpty name="GeoServer" property="contactPerson">  
14
    <tr>
15
      <td class="label"><bean:message key="label.contactPerson"/>:</td>
16
      <td class="datum">
17
        <bean:write name="GeoServer" property="contactPerson"/>
18
      </td>      
19
    </tr>
20
</logic:notEmpty>    
21

    
22
<logic:notEmpty name="GeoServer" property="contactPosition">  
23
    <tr>
24
      <td class="label"><bean:message key="label.contactPosition"/>:</td>
25
      <td class="datum">
26
        <bean:write name="GeoServer" property="contactPosition"/>
27
      </td>
28
    </tr>
29
</logic:notEmpty>
30

    
31
<logic:notEmpty name="GeoServer" property="contactOrganization">
32
    <tr>
33
      <td class="label"><bean:message key="label.contactOrganization"/>:</td>
34
      <td class="datum">   
35
        <bean:write name="GeoServer" property="contactOrganization"/>
36
      </td>
37
    </tr>
38
</logic:notEmpty>
39

    
40
<logic:empty name="GeoServer" property="contactParty">
41
    <tr>
42
      <td class="label"><bean:message key="label.contact"/>:</td>
43
      <td class="datum">   
44
        <bean:message key="message.noContact"/>
45
      </td>
46
    </tr>
47
</logic:empty>
48

    
49
<logic:notEmpty name="GeoServer" property="address">    
50
    <tr>
51
      <td class="label">
52
        Address:
53
      </td>
54
      <td class="datum">   
55
        <bean:write name="GeoServer" property="addressType"/><br>
56
        <bean:write name="GeoServer" property="address"/><br>        
57
        <bean:write name="GeoServer" property="addressCity"/><br>
58
        <bean:write name="GeoServer" property="addressState"/>&nbsp;&nbsp;
59
        <bean:write name="GeoServer" property="addressPostalCode"/><br>
60
        <bean:write name="GeoServer" property="addressCountry"/><br>        
61
      </td>
62
    </tr>
63
</logic:notEmpty>
64

    
65
<logic:notEmpty name="GeoServer" property="contactVoice">
66
    <tr>
67
      <td class="label"><bean:message key="label.phoneNumber"/>:</td>
68
      <td class="datum">
69
        <bean:write name="GeoServer" property="contactVoice"/>
70
      </td>
71
    </tr>
72
</logic:notEmpty>
73

    
74
<logic:notEmpty name="GeoServer" property="contactFacsimile">
75
    <tr>
76
      <td class="label"><bean:message key="label.contactFacsimile"/>:</td>
77
      <td class="datum">
78
        <bean:write name="GeoServer" property="contactFacsimile"/>
79
      </td>
80
    </tr>
81
</logic:notEmpty>
82

    
83
<logic:notEmpty name="GeoServer" property="contactEmail">    
84
    <tr>
85
      <td class="label"><bean:message key="label.contactEmail"/>:</td>
86
      <td class="datum">
87
        <bean:write name="GeoServer" property="contactEmail"/>
88
      </td>
89
    </tr>
90
</logic:notEmpty>
91
    
92
  </tbody>
93
</table>
(3-3/26)