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
<html:form action="/config/data/typeNewSubmit">
6
  <table class="info">
7
    <tr>
8
      <td class="label">
9
		<bean:message key="label.featureTypeName"/>:
10
	  </td>
11
	  <td class="datum">
12
		<html:select property="selectedNewFeatureType">
13
			<html:options property="newFeatureTypes"/>
14
		</html:select>
15
	  </td>
16
    </tr>
17

    
18
	<tr>
19
      <td class="label">&nbsp;</td>
20
      <td class="datum">
21
		<html:submit>
22
			<bean:message key="label.new"/>
23
		</html:submit>
24
      </td>
25
    </tr>
26
  </table>
27
</html:form>
(2-2/4)