Skip to content
Snippets Groups Projects
Commit 2cb5b26d authored by Dave Greenberg's avatar Dave Greenberg
Browse files

Merge pull request #1353 from eileenmcnaughton/CRM-13162

CRM-13162 [closes ticket] make table for disabled relationships show the same fields as ...
parents 481e3493 db190041
No related branches found
No related tags found
No related merge requests found
......@@ -147,12 +147,15 @@
<tr>
<th>{ts}Relationship{/ts}</th>
<th></th>
<th id="dis-start_date">{ts}Start{/ts}</th>
<th id="dis-end_date">{ts}End{/ts}</th>
<th>{ts}City{/ts}</th>
<th>{ts}State/Prov{/ts}</th>
<th>{ts}Email{/ts}</th>
<th>{ts}Phone{/ts}</th>
<th id="dis-end_date">{ts}End Date{/ts}</th>
<th></th>
<th class="hiddenElement"></th>
<th class="hiddenElement"></th>
</tr>
</thead>
{foreach from=$inactiveRelationships item=rel}
......@@ -168,11 +171,14 @@
{if $rel.description}<p class='description'>{$rel.description}</p>{/if}
</td>
<td><a href="{crmURL p='civicrm/contact/view' q="reset=1&cid=`$rel.cid`"}">{$rel.name}</a></td>
<td class="dis-crm-rel-start_date">{$rel.start_date}</td>
<td class="dis-crm-rel-end_date">{$rel.end_date}</td>
<td>{$rel.city}</td>
<td>{$rel.state}</td>
<td>{$rel.email}</td>
<td>{$rel.phone}</td>
<td>{$rel.end_date}</td>
<td class="nowrap">{$rel.action|replace:'xx':$rel.id}</td>
<td class="dis-start_date hiddenElement">{$rel.start_date|crmDate}</td>
<td class="dis-end_date hiddenElement">{$rel.end_date|crmDate}</td>
</tr>
{/foreach}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment