removing date ranges and maiden name from search results
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 5 Apr 2017 12:05:56 +0000 (08:05 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 5 Apr 2017 12:05:56 +0000 (08:05 -0400)
views/front/obits/searchResults.html

index 0cb27b2..297c152 100644 (file)
            <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>