scottohara/loot

View on GitHub
src/payees/views/index.html

Summary

Maintainability
Test Coverage
<table
    id="payees"
    class="table table-striped table-bordered table-hover"
    og-table-navigable="vm.tableActions"
>
    <thead>
        <tr>
            <th>Payee</th>
        </tr>
    </thead>
    <tbody>
        <tr ng-repeat="payee in vm.payees">
            <td class="has-action">
                {{::payee.name}}
                <i
                    og-favourite="{'context': payee.favourite, 'type': 'payee'}"
                    ng-click="vm.toggleFavourite($index)"
                ></i>
                <i
                    class="action glyphicon glyphicon-edit pull-right"
                    uib-tooltip="Edit payee"
                    ng-click="vm.editPayee($index)"
                ></i>
            </td>
        </tr>
    </tbody>

    <tbody></tbody>
</table>