Skip to content

Instantly share code, notes, and snippets.

@jakecraige
Last active December 30, 2015 07:29
Show Gist options
  • Save jakecraige/7796757 to your computer and use it in GitHub Desktop.
Save jakecraige/7796757 to your computer and use it in GitHub Desktop.
<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