Explorar el Código

modify column order

Shinsuke Sugaya hace 9 años
padre
commit
dfe1c6a03f
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/main/webapp/WEB-INF/view/admin/dict/admin_dict.jsp

+ 2 - 2
src/main/webapp/WEB-INF/view/admin/dict/admin_dict.jsp

@@ -53,15 +53,15 @@
 									<table class="table table-bordered table-striped">
 									<table class="table table-bordered table-striped">
 										<thead>
 										<thead>
 											<tr>
 											<tr>
-												<th><la:message key="labels.dictionary_type" /></th>
 												<th><la:message key="labels.dictionary_name" /></th>
 												<th><la:message key="labels.dictionary_name" /></th>
+												<th><la:message key="labels.dictionary_type" /></th>
 											</tr>
 											</tr>
 										</thead>
 										</thead>
 										<tbody>
 										<tbody>
 											<c:forEach var="data" varStatus="s" items="${dictFiles}">
 											<c:forEach var="data" varStatus="s" items="${dictFiles}">
 												<tr data-href="${f:h(data.type)}/?dictId=${f:h(data.id)}">
 												<tr data-href="${f:h(data.type)}/?dictId=${f:h(data.id)}">
-													<td>${f:h(data.type)}</td>
 													<td>${f:h(data.path)}</td>
 													<td>${f:h(data.path)}</td>
+													<td>${f:h(data.type)}</td>
 												</tr>
 												</tr>
 											</c:forEach>
 											</c:forEach>
 										</tbody>
 										</tbody>