Merge pull request #12428 from MrPetovan/bug/12406-frio-contact-list-frame

[frio] Add wrapper to generic contact list
This commit is contained in:
Tobias Diekershoff 2022-12-15 06:16:13 +01:00 committed by GitHub
commit 9e61720875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 11 deletions

View File

@ -1,17 +1,17 @@
{{* This is the standard template for showing contact lists. It is used e.g.
{{* This is the standard template for showing contact lists. It is used e.g.
at the suggest page and also at many other places *}}
<div class="generic-page-wrapper">
{{include file="section_title.tpl"}}
{{include file="section_title.tpl"}}
{{$tab_str nofilter}}
{{$tab_str nofilter}}
<ul id="viewcontact_wrapper{{if $id}}-{{$id}}{{/if}}" class="viewcontact_wrapper media-list">
<ul id="viewcontact_wrapper{{if $id}}-{{$id}}{{/if}}" class="viewcontact_wrapper media-list">
{{foreach $contacts as $contact}}
<li>{{include file="contact/entry.tpl"}}</li>
<li>{{include file="contact/entry.tpl"}}</li>
{{/foreach}}
</ul>
<div class="clear"></div>
<div id="view-contact-end"></div>
</ul>
<div class="clear"></div>
<div id="view-contact-end"></div>
{{$paginate nofilter}}
{{$paginate nofilter}}
</div>