Hypolite Petovan
71db6ab613
- Add Common tab in profile contacts templates - Add routing to new module
32 lines
1.3 KiB
Smarty
32 lines
1.3 KiB
Smarty
<div class="generic-page-wrapper">
|
|
{{include file="section_title.tpl"}}
|
|
|
|
{{if $desc}}
|
|
<p>{{$desc nofilter}}</p>
|
|
{{/if}}
|
|
|
|
<ul role="menubar" class="tabs">
|
|
<li role="menuitem"><a href="profile/{{$nickname}}/contacts" class="tab button{{if !$type || $type == 'all'}} active{{/if}}">{{$all_label}}</a></li>
|
|
<li role="menuitem"><a href="profile/{{$nickname}}/contacts/followers" class="tab button{{if $type == 'followers'}} active{{/if}}">{{$followers_label}}</a></li>
|
|
<li role="menuitem"><a href="profile/{{$nickname}}/contacts/following" class="tab button{{if $type == 'following'}} active{{/if}}">{{$following_label}}</a></li>
|
|
<li role="menuitem"><a href="profile/{{$nickname}}/contacts/mutuals" class="tab button{{if $type == 'mutuals'}} active{{/if}}">{{$mutuals_label}}</a></li>
|
|
{{if $displayCommonTab}}
|
|
<li role="menuitem"><a href="profile/{{$nickname}}/contacts/common" class="tab button{{if $type == 'common'}} active{{/if}}{{if !$common_count}} disabled{{/if}}">{{$common_label}}</a></li>
|
|
{{/if}}
|
|
</ul>
|
|
{{if $contacts}}
|
|
<div id="viewcontact_wrapper-{{$id}}">
|
|
{{foreach $contacts as $contact}}
|
|
{{include file="contact_template.tpl"}}
|
|
{{/foreach}}
|
|
</div>
|
|
{{else}}
|
|
<div class="alert alert-info" role="alert">{{$noresult_label}}</div>
|
|
{{/if}}
|
|
|
|
<div class="clear"></div>
|
|
<div id="view-contact-end"></div>
|
|
|
|
{{$paginate nofilter}}
|
|
</div>
|