Advertisement
Guest User

Untitled

a guest
Nov 19th, 2012
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.52 KB | None | 0 0
  1. <div class="with-padding">
  2.     <table class="table responsive-table" id="sorting-advanced">
  3.         <thead>
  4.             <tr>
  5.                 <th scope="col" width="50%">{{ Lang::line('platform/localisation::countries/table.name') }}</th>
  6.                 <th scope="col" width="15%">{{ Lang::line('platform/localisation::countries/table.iso_code_2') }}</th>
  7.                 <th scope="col" width="15%">* Action</th>
  8.             </tr>
  9.         </thead>
  10.  
  11.         <tfoot>
  12.             <tr>
  13.                 <td colspan="3">
  14.                     --
  15.                 </td>
  16.             </tr>
  17.         </tfoot>
  18.  
  19.         <tbody>
  20.             @foreach ($countries as $country)
  21.             <tr>
  22.                 <td scope="row" ><a href="{{ URL::to_admin('localisation/country/edit/' . $country['slug']) }}">{{ $country['name'] }}</a></td>
  23.                 <td>{{ $country['iso_code_2'] }}</td>
  24.                 <td class="low-padding align-right low-padding">
  25.                         <a class="button compact icon-gear silver-gradient" href="{{ URL::to_admin('localisation/country/edit/' . $country['slug']) }}">{{ Lang::line('button.edit') }}</a>
  26.                         @if ($default_country != $country['iso_code_2'])
  27.                         <a class="button compact icon-trash red-gradient" href="{{ URL::to_admin('localisation/country/delete/' . $country['slug']) }}">{{ Lang::line('button.delete') }}</a>
  28.                         @endif
  29.                 </td>
  30.             </tr>
  31.             @endforeach
  32.         </tbody>
  33.     </table>
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement