<table class="footable results-table" data-paging="false">
<thead>
<tr>
- <th>Birth Year Range</th>
- <th>Death Year Range</th>
<th>Last Name</th>
<th>First Name</th>
<th>Birth Year</th>
<th>Death Year</th>
<th>Spouse</th>
- <th>Maiden Name</th>
</tr>
</thead>
{foreach from=$obits item=i}
<tr>
- <td>
- {if $i.b_yr_range == 0}
-
- {else}
- {$i.b_yr_range}
- {/if}
- </td>
- <td>
- {if $i.d_yr_range == 0}
-
- {else}
- {$i.d_yr_range}
- {/if}
- </td>
<td> <a class="detail-link" href="{$thisUrl}/obits-detail/?obit={$i.id}" >{$i.last_name}</a> </td>
<td>{$i.first_mid}</td>
<td>
{/if}
</td>
<td>{$i.spouse_partner}</td>
- <td>{$i.maiden_other}</td>
</tr>
{/foreach}
</table>