Last active
December 30, 2015 07:29
-
-
Save jakecraige/7796757 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ng-show="!_.isEmpty(notInvitedGuests)" ng-repeat="(groupName, guests) in notInvitedGuests"> | |
<h3 class="topcoat-list__header caps"> | |
<label class="topcoat-checkbox"> | |
<input type="checkbox" selectallgroup> | |
<div class="topcoat-checkbox__checkmark"></div> | |
</label> | |
{{ groupName }} - Not Yet Invited | |
</h3> | |
<ul class="topcoat-list__container"> | |
<li class="topcoat-list__item small disclosure" ng-show="guests" ng-repeat="guest in guests"> | |
<table width="100%"> | |
<tr> | |
<td width="10%"> | |
<label class="topcoat-checkbox"> | |
<input type="checkbox" ng-disabled="!guest.email" ng-model="invites[guest.id]"> | |
<div class="topcoat-checkbox__checkmark"></div> | |
</label> | |
</td> | |
<td width="89%" style="padding-left:1%;" ng-click="openGuest(guest.id)"> | |
<p> | |
<span> | |
{{ guest.name }} | |
</span> | |
<span class="badge red" ng-hide="guest.email"> | |
No Email | |
</span> | |
</p> | |
</td> | |
</tr> | |
</table> | |
</li> | |
</ul> | |
</div> | |
<div class="content-padded"> | |
<button class="topcoat-button--cta button email green full" ng-click="next()"> | |
Send Invites ({{ inviteLength }}) | |
</button> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment