Skip to content
Snippets Groups Projects
Commit f7d21b16 authored by Erik Reid's avatar Erik Reid
Browse files

formatted the output so it's a little prettier

parent 0725df1d
No related branches found
No related tags found
No related merge requests found
......@@ -27,15 +27,33 @@
<div class="column">
<p><b>interfaces</b></p>
{{interfaces}}
<ul>
<li ng-repeat="i in interfaces">{{i.name}}
<ul><li>{{i.description}}</li></ul>
</li>
</ul>
<div class="raw">{{interfaces}}</div>
</div>
<div class="column">
<p><b>bgp</b></p>
{{bgp}}
<ul>
<li ng-repeat="p in bgp">{{p.description}}
<ul>
<li>local as: {{p.as.local}}</li>
<li>peer as: {{p.as.peer}}</li>
</ul>
</li>
</ul>
<div class="raw">{{bgp}}</div>
</div>
<div class="column">
<p><b>snmp</b></p>
{{snmp}}
<ul>
<li ng-repeat="i in snmp">{{i.name}}
<ul><li>index: {{i.index}}</li></ul>
</li>
</ul>
<div class="raw">{{snmp}}</div>
</div>
</div>
</body>
......
......@@ -8,4 +8,10 @@
content: "";
display: table;
clear: both;
}
.raw {
font-style: italic;
font-size: 10px;
font-family: Courier
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment