mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
Merge pull request #1157 from RaspAP/feature/routing-table
Implement routing table raw output
This commit is contained in:
@@ -55,6 +55,29 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 class="mt-3"><?php echo _("Routing table"); ?></h4>
|
||||
<div class="card h-100 w-100">
|
||||
<div class="card-header"><?php echo _("raw output") ?></div>
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
<tbody>
|
||||
<?php foreach($routeInfoRaw as $route): ?>
|
||||
<tr>
|
||||
<pre class="unstyled"><?php echo $route; ?></pre>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 class="mt-3"><?php echo _("Current settings") ?></h4>
|
||||
<div class="row">
|
||||
<?php if (!$bridgedEnabled) : // No interface details when bridged ?>
|
||||
|
Reference in New Issue
Block a user