|
| 1 | +html(ng-app='talksApp') |
| 2 | + head |
| 3 | + title Talks |
| 4 | + meta(charset='utf-8') |
| 5 | + |
| 6 | + link(rel='stylesheet' href='css/app.css') |
| 7 | + body |
| 8 | + #nav |
| 9 | + ul |
| 10 | + li: a(href="http://cosi.clarkson.edu/") CSLabs Homepage |
| 11 | + li: a(href="http://dubsdot.cosi.clarkson.edu/") Dubsdot |
| 12 | + li: a(href="http://docs.cosi.clarkson.edu/") Docs |
| 13 | + li: a(href="http://print.cosi.clarkson.edu/") Print |
| 14 | + li: a(href="http://mirror.clarkson.edu/") Mirror |
| 15 | + li: a(href="http://fsuvius.cosi.clarkson.edu/") Fsuvius |
| 16 | + li: a(href="http://talks.cosi.clarkson.edu/") Talks |
| 17 | + li: a(href="http://cosi-lab.github.io/meeting-minutes/") Meeting Minutes |
| 18 | + li: a(href="http://cosi-lab.github.io/project-updates/") Project Updates |
| 19 | + li: a(href="http://moodle.cosi.clarkson.edu/") COSI Moodle |
| 20 | + li: a(href="http://management.cosi.clarkson.edu/") Management |
| 21 | + |
| 22 | + h1 Talks |
| 23 | + h3 Upcoming Events For The Clarkson Open Source Institute Meetings |
| 24 | + h3 Next Meeting: Mar. 23 |
| 25 | + |
| 26 | + table(ng-controller="talksController" id="talks-table") |
| 27 | + tr(class="event" ng-repeat="talk in talks | orderBy: ['type']") |
| 28 | + td.name {{ talk.name }} |
| 29 | + td.type {{ talk.type }} |
| 30 | + td.desc {{ talk.desc }} |
| 31 | + td.hides |
| 32 | + button(ng-click="hide(this.talk.id)") X |
| 33 | + button(ng-click="unhide(this.talk.id)") ↶ |
| 34 | + tr |
| 35 | + th Talk Presenter |
| 36 | + th Type |
| 37 | + th Description |
| 38 | + tr |
| 39 | + form |
| 40 | + th: input(id="in_name" size=30 name="name" ng-model="newTalk.name" type="text" placeholder="Name") |
| 41 | + th: select(name="type" ng-model="newTalk.type") |
| 42 | + option(value="form topic") Forum Topic |
| 43 | + option(value="lightning talk") Lightning Talk |
| 44 | + option(value="project update") Project Update |
| 45 | + option(value="announcement") Announcement |
| 46 | + option(value="after meeting slot") After-Meeting Slot |
| 47 | + th: input(id="in_desc" size=50 name="desc" type="text" ng-model="newTalk.desc" placeholder="Description") |
| 48 | + th: button(ng-click="createTalk()") Create |
| 49 | + |
| 50 | + script(src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js") |
| 51 | + script(src='js/app.js') |
| 52 | + p(style="text-align:center") V2.0 - Not powered by Fsuvius |
0 commit comments