CaffGeek/MBACNationals

View on GitHub
Web.Admin/AdminApp/Views/Alternates.html

Summary

Maintainability
Test Coverage
<div class="row">
    <div class="alert alert-danger col-md-6">Emergency Spares need to be entered as <a data-ng-click="viewUrl = '/AdminApp/Views/Guests.html';">Guests</a> first. Please go to the Guests tab, and add them.</div>
</div>

<table class="table table-striped table-condensed table-hover">
    <thead>
        <tr>
            <th>Team</th>
            <th>Emergency Spare</th>
            <th></th>
        </tr>
    </thead>
    <tbody data-ng-repeat="team in model.Teams | filter:isTeam | orderBy:'-1*Name.length'" data-ng-show="team.Id">
        <tr>
            <td>{{team.Name}}</td>
            <td>
                <select 
                    data-ng-model="team.Alternate" 
                    data-ng-options="participant.Id as participant.Name for participant in getAllContingentMembers() | orderBy:'Name'"
                    data-ng-change="assignAlternateToTeam(team.Alternate, team)">
                </select>
            </td>
            <td>
                <a href="" data-ng-click="editAlternate(team.Alternate, team)" data-ng-if="team.Alternate">Set Average Info</a>
            </td>
        </tr>
    </tbody>
</table>