Skip to content
Snippets Groups Projects
owner-details.template.html 2.01 KiB
Newer Older
Dapeng's avatar
Dapeng committed
<h2>Owner Information</h2>

<table class="table table-striped">
    <tr>
        <th class="col-sm-3">Name</th>
        <td><b>{{$ctrl.owner.firstName}} {{$ctrl.owner.lastName}}</b></td>
    </tr>
    <tr>
        <th>Address</th>
        <td>{{$ctrl.owner.address}}</td>
    </tr>
    <tr>
        <th>City</th>
        <td>{{$ctrl.owner.city}}</td>
    </tr>
    <tr>
        <th>Telephone</th>
        <td>{{$ctrl.owner.telephone}}</td>
    </tr>
    <tr>
        <td>
Antoine Rey's avatar
Antoine Rey committed
            <a class="btn btn-default" href="#!/owners/{{$ctrl.owner.id}}/edit">Edit Owner</a>
Dapeng's avatar
Dapeng committed
        </td>
        <td>
Antoine Rey's avatar
Antoine Rey committed
            <a href="#!/owners/{{$ctrl.owner.id}}/new-pet" class="btn btn-default">Add New Pet</a>
Dapeng's avatar
Dapeng committed
        </td>
    </tr>
</table>

<h2>Pets and Visits</h2>

Antoine Rey's avatar
Antoine Rey committed
<table class="table table-striped">
    <tr ng-repeat="pet in $ctrl.owner.pets">
        <td valign="top">
            <dl class="dl-horizontal">
                <dt>Name</dt>
                <dd><a href="#!/owners/{{$ctrl.owner.id}}/pets/{{pet.id}}">{{pet.name}}</a></dd>
                <dt>Birth Date</dt>
                <dd>{{pet.birthDate | date:'yyyy MMM dd'}}</dd>
                <dt>Type</dt>
                <dd>{{pet.type.name}}</dd>
            </dl>
        </td>
        <td valign="top">
            <table class="table-condensed">
                <thead>
                <tr>
                    <th>Visit Date</th>
                    <th>Description</th>
                </tr>
                </thead>
                <tr ng-repeat="visit in pet.visits">
                    <td>{{visit.date | date:'yyyy MMM dd'}}</td>
                    <td>{{visit.description}}</td>
                </tr>
                <tr>
                    <td>
                        <a href="#!/owners/{{$ctrl.owner.id}}/pets/{{pet.id}}">Edit Pet</a>
                    </td>
                    <td>
                        <a href="#!/owners/{{$ctrl.owner.id}}/pets/{{pet.id}}/visits">Add Visit</a>
                    </td>
                </tr>
            </table>
        </td>
Antoine Rey's avatar
Antoine Rey committed
    </tr>
</table>
Dapeng's avatar
Dapeng committed