Pony.fm/public/templates/directives/comments.html
2013-08-22 19:48:40 -05:00

22 lines
No EOL
793 B
HTML

<div class="comments" bindonce>
<h2>All Comments ({{resource.comments.length}})</h2>
<div class="alert alert-info" ng-show="resource.comments.length == 0">
There are no comments yet!
</div>
<form class="pfm-form" ng-submit="addComment()" ng-show="auth.isLogged">
<div class="form-row">
<input type="text" ng-model="content" placeholder="Write a comment..." />
</div>
</form>
<ul ng-show="resource.comments.length > 0">
<li bindonce ng-repeat="comment in resource.comments">
<img bo-src="comment.user.avatars.thumbnail" />
<div class="content">
<a bo-href="comment.user.url" bo-text="comment.user.name"></a>
<span bo-text="comment.content"></span>
<div class="meta" bo-text="comment.created_at.date | momentFromNow">
</div>
</div>
</li>
</ul>
</div>