Skip to content
This repository has been archived by the owner on May 28, 2021. It is now read-only.

Commit

Permalink
fixes developer page, write developer name, write action button name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferdi Sonmezay committed Nov 21, 2016
1 parent 46ec381 commit ce6ebe1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/resources/static/partials/developers.html
Expand Up @@ -17,19 +17,19 @@ <h4 class="text-center">Developers</h4>
</thead>
<tbody>
<tr ng-repeat="developer in developers" ng-class="(developer.id == currentDeveloper.id) ? 'warning' : ''">
<td></td>
<td width="80%"></td>
<td width="5%" style="text-align:center;">
<td>{{developer.id}}</td>
<td width="80%">{{developer.name}}</td>
<td width="5%" style="text-align:center;">
<a class="btn btn-xs btn-success" ng-click="selectDeveloper(developer)"><i class="fa fa-pencil-square-o "></i></a>
</td>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col-md-1"></div>
<div class="col-md-5">
<h4 style="color:#B80D57;"></h4>
<h4 style="color:#B80D57;">{{actionName}}</h4>
<div class="white-background" style="padding:20px;">
<form name="developerForm" ng-submit="submit()" method="POST">
<div class="row">
Expand All @@ -42,7 +42,7 @@ <h4 style="color:#B80D57;"></h4>
</div>
<div class="row">
<div class="col-md-12 text-right">
<input class="btn btn-success btn-sm" type="submit" id="submit" value="" />
<input class="btn btn-success btn-sm" type="submit" id="submit" value="{{submitButtonLabel}}" />
<a ng-if="currentDeveloper.id" ng-click="delete(currentDeveloper.id)" class="btn btn-danger btn-sm">Delete</a>
<a ng-if="currentDeveloper.id" ng-click="cancel()" class="btn btn-default btn-sm">Cancel</a>
</div>
Expand Down

0 comments on commit ce6ebe1

Please sign in to comment.