mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 13:05:49 +00:00
add responsive ui layout for owner list page
This commit is contained in:
parent
00397136b5
commit
fdee7e961f
1 changed files with 4 additions and 4 deletions
|
@ -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>
|
Loading…
Reference in a new issue