groupUpdate.ftl 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
  3. <%@ taglib prefix="s" uri="http://www.connsec.com/tags" %>
  4. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  5. <form id="actionForm" method="post" type="label" autoclose="true" action="<s:Base/>/groups/update">
  6. <table border="0" cellpadding="0" cellspacing="0" class="datatable">
  7. <tbody>
  8. <tr>
  9. <th><s:Locale code="group.id" />:</th>
  10. <td nowrap>
  11. <input id="id" type="text" readonly name="id" value="${model.id}"/>
  12. </td>
  13. </tr>
  14. <tr>
  15. <th><s:Locale code="group.name" />:</th>
  16. <td nowrap>
  17. <span class="intspan"><input type="text" id="name" name="name" class="int required" title="" value="${model.name}"/></span>
  18. <b class="orange">*</b><label for="name"></label>
  19. </td>
  20. </tr>
  21. <tr>
  22. <td nowrap colspan="2" class="center">
  23. <input id="_method" type="hidden" name="_method" value="post"/>
  24. <input id="status" type="hidden" name="status" value="1"/>
  25. <input class="button" id="submitBtn" type="button" value="<s:Locale code="button.text.save" />">
  26. <input class="button" id="closeBtn" type="button" value="<s:Locale code="button.text.cancel" />">
  27. </td>
  28. </tr>
  29. </tbody>
  30. </table>
  31. </form>