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

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

29 lines
1008 B
HTML

<div ng-controller="ViewCodeController">
<div class="row paddedtop">
<div class="pull-right">
<div class="btn-group">
<a href="#/editcode/{{code.id}}" class="btn btn-primary"><i class="icon-edit icon-white"></i> Edit</a>
<a data-ng-click="delcode()" class="btn btn-primary" ng-show="code.systemDefined == false"><i class="icon-trash icon-white"></i> Delete</a></div>
</div>
</div>
<div class="row paddedleft">
<h3>{{code.name}}</h3>
<div>
<table class="table" ui:sortable>
<thead>
<tr>
<th>{{ 'label.name1' | translate }}</th>
<th>{{ 'label.position' | translate }}</th>
</tr>
</thead>
<tbody>
<tr data-ng-repeat="codevalue in codevalues">
<td>{{codevalue.name}}</td>
<td>{{codevalue.position}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>