2015-03-22 09:08:38 +01:00
|
|
|
<!-- show details of a single Person (editing also take place here) -->
|
2015-03-22 17:17:51 +01:00
|
|
|
<div class="container">
|
2015-03-21 16:48:00 +01:00
|
|
|
<form ng-model="persondetails" ng-submit="save()">
|
|
|
|
<div class="input-group input-group-lg">
|
2015-03-23 23:06:44 +01:00
|
|
|
<span class="input-group-addon">Name</span>
|
2015-03-30 21:31:09 +02:00
|
|
|
<input type="text" class="form-control" placeholder="Name" ng-model="person.name" ng-required="1">
|
2015-03-21 16:48:00 +01:00
|
|
|
</div>
|
2015-03-15 23:05:59 +01:00
|
|
|
|
2015-03-21 16:48:00 +01:00
|
|
|
<div class="input-group input-group-lg top5">
|
2015-03-23 23:06:44 +01:00
|
|
|
<span class="input-group-addon">Surname</span>
|
2015-03-30 21:31:09 +02:00
|
|
|
<input type="text" class="form-control" placeholder="Surname" ng-model="person.surname">
|
2015-03-21 16:48:00 +01:00
|
|
|
</div>
|
2015-03-15 23:05:59 +01:00
|
|
|
|
2015-03-21 16:48:00 +01:00
|
|
|
<div class="input-group top5">
|
2015-03-23 23:06:44 +01:00
|
|
|
<span class="input-group-addon">Email</span>
|
2015-03-30 21:31:09 +02:00
|
|
|
<input type="email" name="email" class="form-control" placeholder="root@example.com" ng-model="person.email">
|
2015-03-21 16:48:00 +01:00
|
|
|
</div>
|
2015-03-15 23:05:59 +01:00
|
|
|
|
2015-03-21 16:48:00 +01:00
|
|
|
<input type="submit" style="position: absolute; left: -9999px; width: 1px; height: 1px;"/>
|
|
|
|
</form>
|
2015-03-31 23:35:56 +02:00
|
|
|
|
|
|
|
<div class="panel panel-primary table-striped top5">
|
2015-04-04 13:01:33 +02:00
|
|
|
<div class="panel-heading">Events</div>
|
2015-03-31 23:35:56 +02:00
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-04-04 13:01:33 +02:00
|
|
|
<th>Event</th>
|
|
|
|
<th>Attended</th>
|
2015-03-31 23:35:56 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2015-04-04 13:01:33 +02:00
|
|
|
<tr ng-repeat="event in events">
|
2015-04-04 14:15:52 +02:00
|
|
|
<td><a href="/#/events/{{event._id}}">{{event.title}}</a></td>
|
|
|
|
<td><span class="glyphicon {{(event.person_data && event.person_data.attended) && 'glyphicon-ok-sign' || 'glyphicon-remove-sign'}}"></span></td>
|
2015-03-31 23:35:56 +02:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2015-03-21 16:48:00 +01:00
|
|
|
</div>
|
2015-03-31 23:35:56 +02:00
|
|
|
|