d151365d83058770d5c4d1996cecdb979e749c2e
[angular-drzb] / app / partials / authors.html.ep
1
2 <div ng-show="! ready" class="alert alert-important">
3 {{message}}
4 </div>
5
6 <form ng-controller="AuthorsCtrl" class="form-search" ng-show="ready">
7
8 <fieldset>
9 <legend>
10 Authors
11 </legend>
12
13 <input class="my-lebel-input search-query" ng-model="search.$" label="Search">
14
15 <a class="btn btn-invert" href="" ng-click="reset()">
16 <i class="icon-remove"></i></a>
17
18 <tt>{{search}}</tt>
19
20 {{data.total_rows}} authors
21 {{data.distinct_rows}} distinct
22
23 </fieldset>
24
25 <table ng-show="authors.length" class="table">
26 <tr ng-repeat="author in authors | filter:search">
27 <td>{{author.value.surname}}</td>
28 <td>{{author.value.firstname}}</td>
29 <td>{{author.value.organization}}</td>
30 <td>{{author.value.email}}</td>
31 </tr>
32 </table>
33
34 % if ( $lang =~ m/x-dev/ ) {
35 <pre class="controls-row">
36 {{authors}}
37 </pre>
38 % }
39
40 </form>
41