design
[angular-mojolicious.git] / templates / conference / Symposium.html.ep
1 <script src="/controller/conference/Symposium.js"></script>
2
3 <div ng:controller="Symposium">
4
5 <h1>Prijava simpozija</h1>
6
7 <div ng:show="symposium._id">
8 <a href="#{{symposium._id}}">permalink to {{symposium.title}}</a>
9 </div>
10
11    Naslov: <input name="symposium.title" size="60"><br/>
12    
13    Sazetak: <br/>
14     <textarea name="symposium.abstract" cols="50" rows="5"></textarea> <br/>
15
16 <div ng:repeat="author in symposium.authors">
17 [<a href="" ng:click="symposium.authors.$remove(author)">X</a>]
18 <input name="author.name" ng:required>
19 <input name="author.surname" ng:required>
20 <input name="author.inst" >
21 <input name="author.email" ng:required>
22 </div>
23 [<a href="" ng:click="symposium.authors.$add()">Add another author</a>]
24
25 <hr>    
26
27     <input type="submit" value="Save" ng:click="save();" disabled="{{$invalidWidgets}}">
28     <input type="reset" value="Reset" ng:click="reset()">
29         <a href="Symposium">Novi simpozij</a>
30
31 </div>