mirror of
https://github.com/sismics/docs.git
synced 2025-02-03 06:45:12 +01:00
28 lines
990 B
HTML
28 lines
990 B
HTML
<div class="text-right">
|
|
<div class="btn-group">
|
|
<button class="btn btn-primary" ng-click="editDocument(document.id)"><span class="icon-pencil icon-white"></span> Edit</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page-header">
|
|
<h1>{{ document.title }} <small>{{ document.create_date | date: 'short' }}</small></h1>
|
|
</div>
|
|
|
|
<p ng-bind-html="document.description | newline"></p>
|
|
|
|
<ul class="thumbnails" ng-show="files.length > 0">
|
|
<li class="span2" ng-repeat="file in files" ng-style="{ 'margin-left': $index % 6 == 0 ? '0' : '' }">
|
|
<div class="thumbnail">
|
|
<a ng-click="openFile(file)">
|
|
<img ng-src="api/file/{{ file.id }}/data?thumbnail=true" tooltip="{{ file.mimetype }}" tooltip-placement="top" />
|
|
</a>
|
|
<div class="caption">
|
|
<p class="text-right">
|
|
<button class="btn btn-danger" ng-click="deleteFile(file)"><span class="icon-trash icon-white"></span></button>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<div ui-view="file"></div> |