modify column order

This commit is contained in:
Shinsuke Sugaya 2016-06-17 06:35:27 +09:00
parent 58984045c4
commit dfe1c6a03f

View file

@ -53,15 +53,15 @@
<table class="table table-bordered table-striped">
<thead>
<tr>
<th><la:message key="labels.dictionary_type" /></th>
<th><la:message key="labels.dictionary_name" /></th>
<th><la:message key="labels.dictionary_type" /></th>
</tr>
</thead>
<tbody>
<c:forEach var="data" varStatus="s" items="${dictFiles}">
<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.type)}</td>
</tr>
</c:forEach>
</tbody>