diff --git a/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-description.tpl.html b/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-description.tpl.html index affcd765f..4724ffafe 100644 --- a/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-description.tpl.html +++ b/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-description.tpl.html @@ -1,51 +1,48 @@ <form name="form" role="form"> <div class="col-sm-12"> <br/> <div class="form-group"> <label>Topic Id:</label> {{topic.id}} </div> <div class="form-group"> <label>Date Created:</label> {{formatDate(topic.createDate)}} </div> <div class="form-group"> <label>Last Updated:</label> {{formatDate(topic.changeDate)}} </div> - <div class="form-group"> - <label>Status:</label> {{topic.state}} - </div> <label class="pull-right"> *<small>Required Field</small> </label> <div class="form-group"> <label>Topic Name*</label> <input type="text" ng-model="topic.name" name="topicname" id="topicname" class="form-control" required novalidate readonly> </div> <div class="form-group"> <label>Please Describe Your Query's Intent*</label> <textarea readonly ng-model="topic.description" name="topicdescription" id="topicdescription" class="form-control" required novalidate></textarea> </div> <div class="form-group"> <label>Status:</label> <select disabled ng-cloak> <option>{{topic.state}}</option> </select> </div> <div class="form-group text-center"> <button type="submit" class="pull-right shrine-button shrine-submit" ng-disabled="!isEditable()" ng-click="tabState = 'edit'"> <span>EDIT</span> <i class="fa fa-chevron-right fa-2x"></i> </button> </div> </div> </form> \ No newline at end of file diff --git a/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-edit.tpl.html b/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-edit.tpl.html index cf3e87508..8c61635b0 100644 --- a/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-edit.tpl.html +++ b/apps/steward-app/src/main/js/src/app/dashboard/topics/topic-table/topic-detail/role2-edit.tpl.html @@ -1,71 +1,68 @@ <form name="form" role="form"> <div class="col-sm-12"> <br/> <div class="form-group"> <label>Topic Id:</label> {{topic.id}} </div> <div class="form-group"> <label>Date Created:</label> {{formatDate(topic.createDate)}} </div> <div class="form-group"> <label>Last Updated:</label> {{formatDate(topic.changeDate)}} </div> - <div class="form-group"> - <label>Status:</label> {{topic.state}} - </div> <label class="pull-right"> *<small>Required Field</small> </label> <div class="form-group"> <label>Topic Name*</label> <input type="text" ng-model="topic.name" name="topicname" id="topicname" class="form-control" required novalidate readonly> </div> <div class="form-group"> <label>Please Describe Your Query's Intent*</label> <textarea readonly ng-model="topic.description" name="topicdescription" id="topicdescription" class="form-control" required novalidate></textarea> </div> <div class="form-group" ng-switch on="topic.state === 'Pending'" ng-cloak> <label>Status:</label> <!-- ie 11 hack --> <select ng-model="topic.state" ng-switch-when="true"> <option value="Pending" ng-selected="true"> Pending </option> <option value="Approved"> Approved </option> <option value="Rejected"> Rejected </option> </select> <select ng-model="topic.state" ng-switch-when="false" ng-cloak> <option value="Approved" ng-selected="currentTopic.state === 'Approved'"> Approved </option> <option value="Rejected" ng-selected="currentTopic.state === 'Rejected'"> Rejected </option> </select> </div> <div class="form-group text-center"> <button type="submit" class="pull-right shrine-button shrine-submit" ng-disabled="topic.state === 'Pending'" ng-click="ok(topic.id)"> <span>UPDATE</span> <i class="fa fa-chevron-right fa-2x"></i> </button> </div> </div> </form> \ No newline at end of file