Skip to content

Commit

Permalink
SHIBUI-1031 Fixed routes
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Dec 10, 2018
1 parent 77680a8 commit 2d97630
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ui/src/app/dashboard/dashboard.routing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ const routes: Routes = [
path: '',
component: DashboardPageComponent,
children: [
{ path: '', redirectTo: 'metadata', pathMatch: 'prefix' },
{
path: 'metadata',
component: MetadataPageComponent,
children: [
{ path: '', redirectTo: 'manager', pathMatch: 'prefix' },
{
path: 'manager',
component: ManagerComponent,
Expand Down
33 changes: 31 additions & 2 deletions ui/src/app/user/admin/container/admin-management.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,41 @@
<div class="section-header bg-primary p-2 text-light">
<div class="row justify-content-between">
<div class="col-12">
<span class="lead" translate="label.admin-management">Admin Management</span>
<span class="lead" translate="label.admin-management">User Maintenance</span>
</div>
</div>
</div>
<div class="p-3">

<table class="table table-striped">
<thead class="thead-primary">
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>

0 comments on commit 2d97630

Please sign in to comment.