mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 15:56:48 +00:00
26 lines
701 B
HTML
26 lines
701 B
HTML
|
|
<h3>Code Name</h3>
|
|
<div class="span4 pull-right">
|
|
<a href="#/addcode" class="btn btn-primary"><i class="icon-plus icon-white"></i>Add Code</a>
|
|
</div>
|
|
<div class="row alert-block span" data-ng-controller="CodeController">
|
|
<table class="table" ui:sortable>
|
|
<thead>
|
|
<tr>
|
|
<th>CodeName</th>
|
|
<th>System Defined</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr data-ng-repeat="code in codes">
|
|
<td><a href="#/viewcode/{{code.id}}">{{code.name}}</a></td>
|
|
<td>{{code.systemDefined}}</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
|