CaffGeek/MBACNationals

View on GitHub
Web.Admin/AdminApp/Views/Reports/Newsworthy.html

Summary

Maintainability
Test Coverage
<div class="row">
    <div class="col-md-12">
        <h4>Newsworthy (Birthdays)</h4>
        <input data-ng-model="filter.Name" type="text" placeholder="Filter by Name" autofocus>
        <table data-exportable="Newsworthy" class=" table table-striped table-condensed table-hover">
            <thead>
                <tr>
                    <th>Participant</th>
                    <th>Birthday</th>
                </tr>
            </thead>
            <tbody data-ng-repeat="participant in model.Participants | orderBy:'Birthday' | filter:{ Name: filter.Name } | filter:{ Birthday: '' }" data-ng-if="participant.Name">
                <tr>
                    <td>{{participant.Name}}</td>
                    <td>{{participant.Birthday | date:'MMM dd'}}</td>
                </tr>
            </tbody>
        </table>
    </div>
</div>