Skip to content
Snippets Groups Projects
Commit fdee7e96 authored by Dapeng's avatar Dapeng
Browse files

add responsive ui layout for owner list page

parent 00397136
No related branches found
No related tags found
No related merge requests found
......@@ -10,10 +10,10 @@
<thead>
<tr>
<th>Name</th>
<th>Address</th>
<th class="hidden-sm hidden-xs">Address</th>
<th>City</th>
<th>Telephone</th>
<th>Pets</th>
<th class="hidden-xs">Pets</th>
</tr>
</thead>
......@@ -23,9 +23,9 @@
{{owner.firstName}} {{owner.lastName}}
</a>
</td>
<td>{{owner.address}}</td>
<td class="hidden-sm hidden-xs">{{owner.address}}</td>
<td>{{owner.city}}</td>
<td>{{owner.telephone}}</td>
<td><span ng-repeat="pet in owner.pets">{{pet.name + ' '}}</span></td>
<td class="hidden-xs"><span ng-repeat="pet in owner.pets">{{pet.name + ' '}}</span></td>
</tr>
</table>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment