1
0
mirror of https://github.com/sismics/docs.git synced 2026-04-02 23:25:24 +00:00

Initial commit

This commit is contained in:
jendib
2013-07-27 18:33:20 +02:00
parent 41cb6dd9ae
commit 9b74bd8194
156 changed files with 72879 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<div class="container-fluid">
<div class="row-fluid">
<div class="span5 well">
<p class="text-center">
<button class="btn btn-primary" type="button" ng-click="addDocument()">Add a document</button>
</p>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Title</th>
<th>Creation date</th>
</tr>
</thead>
<tbody>
<tr ng-click="viewDocument(document.id)" ng-repeat="document in documents">
<td>{{ document.title }}</td>
<td>{{ document.create_date | date: 'short' }}</td>
</tr>
</tbody>
</table>
</div>
<div class="span7 well">
<div ui-view="document"></div>
</div>
</div>
</div>