templates for two other partials
[angular-drzb] / app / partials / list.html.ep
1 <div ng-show="! ready">
2 Loading data...
3 </div>
4
5
6 <form ng-controller="ListCtrl" class="form-search" ng-show="ready">
7
8 <h2>Odaberite tip registracije</h2>
9
10 <label class="radio input-block-level" ng-repeat="type in RegistrationTypes" ng-switch on="type.code">
11 <hr ng-switch-when="false">
12 <span ng-switch-default ng-show="RegistrationTypeCount[type.code] > 0">
13  <tt>{{RegistrationTypeCount[type.code]}}</tt>
14  <input type="radio" name="search.registration_type" ng-model="search.registration_type" value="{{type.code}}" >
15  {{type.label}}
16  <i>{{type.description}}</i>
17 </span>
18 </label>
19
20 <div>
21 Search:
22 <input class="search-query" ng-model="search.$">
23 <a class="btn btn-invert" href="" ng-click="search.$ = ''">
24 <i class="icon-remove"></i></a>
25 <b>{{list.length}} results</b>
26 <tt>{{search}}</tt>
27 </div>
28
29 <div ng-show="list.length">
30
31 <h2>Prijavljenje registracije {{search.registration_type}}</h2>
32
33
34 <ol>
35 <li ng-repeat="registration in list">
36  <a href="#/registration/{{registration.id}}">edit</a>
37  {{registration.user.registration_type}}
38  <tt>{{registration._id}}</tt>
39
40         <p>
41          {{registration.user.firstname}}
42          {{registration.user.surname}}
43          <em>{{registration.user.organization}}</em>,
44          {{registration.user.city}},
45          <i>{{registration.user.country}}</i>
46          <tt>&lt;{{registration.user.email}}&gt;</tt>
47         </p>
48
49 <p ng-show="registration.user.registration_type == 'symposium'">
50 {{registration.symposium.title}}
51  <p class="abstract">
52  {{registration.symposium.abstract}}
53  </p>
54 </p>
55
56 <h3 ng-show="registration.work.title">
57 {{registration.work.title}}
58 </h3>
59
60 <p ng-repeat="author in registration.work.persons" >
61  {{author.firstname}}
62  {{author.surname}},
63  <em>{{author.organization}}</em>
64  <tt>&lt;{{author.email}}&gt;</tt>
65 </p>
66
67 <p class="abstract">{{registration.work.abstract}}</p>
68
69 <ol ng-show="registration.user.registration_type == 'symposium'">
70  <li ng-repeat="work in registration.work.symposium_works">
71   <h4>{{work.title}}</h4>
72
73         <p ng-repeat="author in work.persons" >
74          {{author.firstname}}
75          {{author.surname}},
76          <em>{{author.organization}}</em>
77          <tt>&lt;{{author.email}}&gt;</tt>
78         </p>
79
80     <p class="abstract">{{work.abstract}}</p>
81
82  </li>
83
84 </ol>
85
86 </div><!-- ng-show="list.length"-->
87
88 </form>
89