Initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<div class="order-step-estimation">
|
||||
<span class="step-acutal-date">{{'orders.tables.headers.actualDate' | translate}}: {{step.actualDate}}</span>
|
||||
</div>
|
||||
|
||||
{{'orders.tables.headers.comments' | translate}}:
|
||||
<div class="order-step-comment" ng-repeat="commentObj in step.comments">
|
||||
<div class="order-comment-date">{{commentObj.user}} - {{commentObj.addDate}}:</div>
|
||||
<div class="order-comment-label">{{commentObj.comment}}</div>
|
||||
</div>
|
||||
|
||||
<div class="order-step-comments-container" ng-if="canAddComment(step)">
|
||||
<textarea type="text"
|
||||
ng-model="stepCommentText"
|
||||
class="form-control order-step-comment-textarea"
|
||||
placeholder="{{'orders.tables.headers.comments' | translate}}"></textarea>
|
||||
<div class="btn btn-primary col-md-4" ng-click="updateStepComment(stepCommentText, step)">
|
||||
{{ 'orders.buttons.SUBMIT' | translate }}
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user