2015-02-25 09:01:37 -06:00
|
|
|
<topnav icon="fa fa-fw fa-users" title="Global Orgs" subnav="true">
|
|
|
|
<ul class="nav">
|
2015-08-11 08:20:50 -05:00
|
|
|
<li class="active"><a href="admin/orgs">List</a></li>
|
2015-02-25 09:01:37 -06:00
|
|
|
</ul>
|
|
|
|
</topnav>
|
|
|
|
|
2015-11-19 21:02:38 -06:00
|
|
|
<div class="page-container" style="background: transparent; border: 0;">
|
|
|
|
<div class="page-wide">
|
2015-02-25 09:01:37 -06:00
|
|
|
<h2>
|
|
|
|
Organizations
|
|
|
|
</h2>
|
2015-11-19 21:02:38 -06:00
|
|
|
<table class="filter-table form-inline">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Id</th>
|
|
|
|
<th>Name</th>
|
2015-12-03 20:20:54 -06:00
|
|
|
<th></th>
|
2015-11-19 21:02:38 -06:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="org in orgs">
|
2015-12-03 20:20:54 -06:00
|
|
|
<td>{{org.id}}</td>
|
2015-11-19 21:02:38 -06:00
|
|
|
<td>{{org.name}}</td>
|
2015-12-03 20:20:54 -06:00
|
|
|
<td class="text-right">
|
2015-11-19 21:02:38 -06:00
|
|
|
<a href="admin/orgs/edit/{{org.id}}" class="btn btn-inverse btn-small">
|
|
|
|
<i class="fa fa-edit"></i>
|
|
|
|
Edit
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a ng-click="deleteOrg(org)" class="btn btn-danger btn-small">
|
|
|
|
<i class="fa fa-remove"></i>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
2015-08-11 08:20:50 -05:00
|
|
|
</table>
|
|
|
|
|
2015-02-25 09:01:37 -06:00
|
|
|
</div>
|
|
|
|
</div>
|