Commit a37322ba by Bence Dányi

firewall_gui: change column order

parent 85135a40
...@@ -18,15 +18,15 @@ ...@@ -18,15 +18,15 @@
<tr> <tr>
<th>Név</th> <th>Név</th>
<th>Vlan</th> <th>Vlan</th>
<th>Tulajdonos</th> <th>IPv4</th>
<th>Csoportok</th> <th>Csoportok</th>
<th>Leírás</th> <th>Tulajdonos</th>
<th colspan="2">IPv4</th> <th colspan="2">Leírás</th>
</tr> </tr>
<tr ng-repeat="host in getPage()"> <tr ng-repeat="host in getPage()">
<td>{{host.name}}</td> <td>{{host.name}}</td>
<td><a href="#/hosts/{{host.vlan.id}}">{{host.vlan.name}}</a></td> <td><a href="#/hosts/{{host.vlan.id}}">{{host.vlan.name}}</a></td>
<td>{{host.owner.name}}</td> <td>{{host.ipv4}}</td>
<td> <td>
<ul> <ul>
<li ng-repeat="group in host.groups"> <li ng-repeat="group in host.groups">
...@@ -34,8 +34,8 @@ ...@@ -34,8 +34,8 @@
</li> </li>
</ul> </ul>
</td> </td>
<td>{{host.owner.name}}</td>
<td style="width: 200px;">{{host.description}}</td> <td style="width: 200px;">{{host.description}}</td>
<td>{{host.ipv4}}</td>
<td> <td>
<a class="btn" href="#/hosts/{{host.id}}/">Szerkesztés</a> <a class="btn" href="#/hosts/{{host.id}}/">Szerkesztés</a>
<a class="btn btn-danger" href="#/hosts/{{host.id}}/delete/">Törlés</a> <a class="btn btn-danger" href="#/hosts/{{host.id}}/delete/">Törlés</a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment