Skip to content

Commit

Permalink
Guests: UX: Show day before each time
Browse files Browse the repository at this point in the history
It's easy to get lost in the list and forget
what day you're looking at, so put a reminder
in there.
  • Loading branch information
pmanijak committed Jan 19, 2014
1 parent 078d213 commit c08f4b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions guests/volunteers.html
@@ -1,4 +1,4 @@
<h5>Volunteers</h5>
<h5>Volunteers.</h5>
<form novalidate>
<input type="text" ng-model="volunteer.name" placeholder="First name" style="margin-top: 1ex"/>
<button class="btn" ng-click="showSchedule(volunteer.name)">That's me</button>
Expand All @@ -17,7 +17,7 @@ <h5>Volunteers</h5>
<div ng-show="friday.length > 0">
<h4>Friday</h4>
<div class="timeslot" ng-repeat="slot in friday" ng-class-odd="'odd'">
<div><strong>{{slot.time}}</strong></div>
<div>Friday: <strong>{{slot.time}}</strong></div>
<div>Location: {{slot.location}}</div>
<div>Role: {{slot.role}}</div>
<div>Specifics: {{slot.detail}}</div>
Expand All @@ -28,7 +28,7 @@ <h4>Friday</h4>
<div ng-show="saturday.length > 0">
<h4>Saturday</h4>
<div class="timeslot" ng-repeat="slot in saturday" ng-class-odd="'odd'">
<div><strong>{{slot.time}}</strong></div>
<div>Saturday: <strong>{{slot.time}}</strong></div>
<div>Location: {{slot.location}}</div>
<div>Role: {{slot.role}}</div>
<div>Specifics: {{slot.detail}}</div>
Expand All @@ -39,12 +39,12 @@ <h4>Saturday</h4>
<div ng-show="sunday.length > 0">
<h4>Sunday</h4>
<div class="timeslot" ng-repeat="slot in sunday" ng-class-odd="'odd'">
<div><strong>{{slot.time}}</strong></div>
<div>Sunday: <strong>{{slot.time}}</strong></div>
<div>Location: {{slot.location}}</div>
<div>Role: {{slot.role}}</div>
<div>Specifics: {{slot.detail}}</div>
<div>Contact: {{slot.contact}}</div>
</div>
</div>
</div>
<p style="margin-top: 2em">Thank you.</p>

0 comments on commit c08f4b7

Please sign in to comment.