3
0
Fork 0
xnode/lib-build/debug-server/www_views/thtml/server/routes-group.ejs

18 lines
388 B
Plaintext
Raw Normal View History

2022-11-13 00:46:38 +00:00
<div class="table-responsive">
<h3><%= routeGroup.toUpperCase() %></h3>
<table class="table table-bordered table-hover table-striped">
<thead>
<tr>
<th>Path</th>
<th>Method</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="route in serverRoutes['<%= routeGroup %>']">
<td>{{route.uriPath}}</td>
<td>{{route.httpMethod}}</td>
</tr>
</tbody>
</table>
</div>