Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SHOR-10: Fixed wrapper #12820

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions templates/CRM/Contact/Form/Task.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,23 @@

{if $searchtype eq 'ts_sel'}
<div id="popupContainer">
<table id="selectedRecords-{$group.id}" class="display crm-copy-fields crm-sortable">
<thead>
<tr class="columnheader">
<th class="contact_details">{ts}Name{/ts}</th>
</tr>
</thead>

<tbody>
{foreach from=$value item='row'}
<tr class="{cycle values="odd-row,even-row"}">
<td class="name">{$row}</td>
<div class="crm-block crm-form-block crm-search-form-block">
<table id="selectedRecords-{$group.id}" class="display crm-copy-fields crm-sortable">
<thead>
<tr class="columnheader">
<th class="contact_details">{ts}Name{/ts}</th>
</tr>
{/foreach}
</tbody>
</table>
</thead>

<tbody>
{foreach from=$value item='row'}
<tr class="{cycle values="odd-row,even-row"}">
<td class="name">{$row}</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</div><br />
<a href="#" id="popup-button" title="{ts}View Selected Contacts{/ts}">{ts}View Selected Contacts{/ts}</a>
{/if}
Expand Down