author | Chloe Laisne <chloe.laisne@gmail.com> |
Mon, 18 Jul 2016 02:37:48 +0200 | |
changeset 244 | d7ab83ecf737 |
parent 168 | 17f10b56c079 |
permissions | -rw-r--r-- |
4 | 1 |
<div class="container-fluid"> |
2 |
<div class="row"> |
|
3 |
<div class="col-md-10 col-md-offset-1"> |
|
4 |
<div class="panel panel-default"> |
|
5 |
<div class="panel-heading">{{t 'bo.document_list'}}</div> |
|
6 |
||
7 |
<div class="panel-body"> |
|
8 |
<table class="table table-striped"> |
|
9 |
<thead> |
|
10 |
<tr><th>{{t 'bo.document_list.uri_col'}}</th><th>{{t 'bo.document_list.id_col'}}</th></tr> |
|
11 |
</thead> |
|
12 |
<tbody> |
|
13 |
{{#each model as |doc|}} |
|
168
17f10b56c079
improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
ymh <ymh.work@gmail.com>
parents:
4
diff
changeset
|
14 |
<tr><td>{{ doc.uri }}</td><td>{{#link-to 'doc' doc.encodedId}}{{doc.id}}{{/link-to}}</td></tr> |
4 | 15 |
{{/each}} |
16 |
</tbody> |
|
17 |
</table> |
|
18 |
</div> |
|
19 |
</div> |
|
20 |
</div> |
|
21 |
</div> |
|
22 |
</div> |
|
23 |
||
24 |
{{outlet}} |