Commit 676ff916 by Bence Dányi

firewall_gui: partial template for rule list added

parent 2c9ed80c
<table class="table table-striped">
<tr>
<th>Irány</th>
<th>Protokoll</th>
<th>Cél</th>
<th>Idegen hálózat</th>
<th>Tulajdonos</th>
<th colspan="2">Megjegyzés</th>
</tr>
<tr ng-repeat="rule in rules">
<td>{{rule.direction}}</td>
<td>{{rule.proto}}</td>
<td><a href="#/{{rule.target.type}}s/{{rule.target.id}}">{{rule.target.name}}</a></td>
<td><a href="#/vlangroups/{{rule.foreignNetwork.id}}">{{rule.foreignNetwork.name}}</a></td>
<td>{{rule.owner.name}}</td>
<td>{{rule.description}}</td>
<td>
<a class="btn" href="#/rules/{{rule.id}}/">Szekesztés</a>
<a class="btn btn-danger" href="#/rules/{{rule.id}}/delete/">Törlés</a>
</td>
</tr>
</table>
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