An actual minimum viable product, maybe? #11

Merged
andrewlalis merged 43 commits from develop into master 2018-10-12 18:19:41 +00:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit a59b88a5a6 - Show all commits

View File

@ -11,10 +11,13 @@
<div class="col-sm-9"> <div class="col-sm-9">
<div class="review-block-rate" data-rating="{{ review.rating }}"> <div class="review-block-rate" data-rating="{{ review.rating }}">
<div class="clearfix"></div> <div class="clearfix"></div>
</div> </div>
<div class="review-block-title">{{ review.title }}</div> <div class="review-block-title">{{ review.title }}</div>
<div class="review-block-description">{{ review.content }}</div> <div class="review-block-description">{{ review.content }}</div>
<div>
<span title="{{ review.getHelpfulVoteCount }} people found this review helpful">{{ review.getHelpfulVoteCount }} <span class="glyphicon glyphicon-thumbs-up"></span></span> /
<span title="{{ review.getUnhelpfulVoteCount }} people found this review unhelpful">{{ review.getUnhelpfulVoteCount }} <span class="glyphicon glyphicon-thumbs-down"></span></span>
</div>
</div> </div>
</div> </div>