community-app/html/system/codes.html
safiyu 4c8b9808b5 Manage Codes Added
added manage code

added manage code
2013-09-04 13:30:32 +05:30

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>