<table class="tbl">
  <thead>
    <tr>
      <th>[% l('Place') %]</th>
      <th>[% l('Type') %]</th>
      <th>[% l('Address') %]</th>
    </tr>
  </thead>
  <tbody>
    [% FOR place IN places %]
    <tr class="[% loop.parity %]">
      <td>
        [% link_entity(place) %]
      </td>
      <td>
        [% place.l_type_name %]
      </td>
      <td>
        [% place.address %]
      </td>
    </tr>
    [% END %]
  </tbody>
</table>
