Files
meanTorrent/modules/articles/client/views/view-article.client.view.html
Michael Leanos 89075cb8d3 feat(articles): Article Admin feature (#807)
This feature introduces a breaking change, that restricts the User's that
can create/edit/delete Articles to only those that have the `admin` Role.

Fixed ESLint issues.

Resolved merge conflicts, and moved new client Article Service
`createOrUpdate` functionality to new Admin feature controller.

Removed edit functionality from client-side Article controller.
2016-07-25 17:34:06 -07:00

16 lines
443 B
HTML

<section>
<div class="page-header">
<h1 ng-bind="vm.article.title"></h1>
</div>
<small>
<em class="text-muted">
Posted on
<span ng-bind="vm.article.created | date:'mediumDate'"></span>
by
<span ng-if="vm.article.user" ng-bind="vm.article.user.displayName"></span>
<span ng-if="!vm.article.user">Deleted User</span>
</em>
</small>
<p class="lead" ng-bind="vm.article.content"></p>
</section>