Move viewcontact_template and contact_template to contact/ folder
This commit is contained in:
parent
891f686dcf
commit
811e144e9e
15 changed files with 14 additions and 14 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
<div id="viewcontact_wrapper-{{$id}}">
|
||||
{{foreach $contacts as $contact}}
|
||||
{{include file="contact_template.tpl"}}
|
||||
{{include file="contact/entry.tpl"}}
|
||||
{{/foreach}}
|
||||
</div>
|
||||
<div class="clear"></div>
|
|
@ -8,7 +8,7 @@ at the suggest page and also at many other places *}}
|
|||
|
||||
<ul id="viewcontact_wrapper{{if $id}}-{{$id}}{{/if}}" class="viewcontact_wrapper media-list">
|
||||
{{foreach $contacts as $contact}}
|
||||
<li>{{include file="contact_template.tpl"}}</li>
|
||||
<li>{{include file="contact/entry.tpl"}}</li>
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
<div class="clear"></div>
|
|
@ -1,7 +1,7 @@
|
|||
<div id="contact-drop-confirm">
|
||||
<h2 class="heading">{{$l10n.header}}</h2>
|
||||
|
||||
{{include file="contact_template.tpl" no_contacts_checkbox=True}}
|
||||
{{include file="contact/entry.tpl" no_contacts_checkbox=True}}
|
||||
|
||||
{{include file="confirm.tpl"}}
|
||||
|
||||
|
|
|
@ -49,10 +49,10 @@
|
|||
</ul>
|
||||
<div class="clear"></div>
|
||||
<div id="contact-list">
|
||||
{{* format each contact with the contact_template.tpl *}}
|
||||
{{* format each contact with the contact/entry.tpl *}}
|
||||
<ul id="viewcontact_wrapper" class="viewcontact_wrapper media-list">
|
||||
{{foreach $contacts as $contact}}
|
||||
<li>{{include file="contact_template.tpl"}}</li>
|
||||
<li>{{include file="contact/entry.tpl"}}</li>
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
@ -28,10 +28,10 @@
|
|||
|
||||
<div id="directory-search-end" class="clear"></div>
|
||||
|
||||
{{* format each contact with the contact_template.tpl *}}
|
||||
{{* format each contact with the contact/entry.tpl *}}
|
||||
<ul id="viewcontact_wrapper" class="viewcontact_wrapper media-list">
|
||||
{{foreach $contacts as $contact}}
|
||||
<li>{{include file="contact_template.tpl"}}</li>
|
||||
<li>{{include file="contact/entry.tpl"}}</li>
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
|
||||
{{* The contacts who are already members of the contact group *}}
|
||||
{{foreach $groupeditor.members as $contact}}
|
||||
<li class="members active">{{include file="contact_template.tpl"}}</li>
|
||||
<li class="members active">{{include file="contact/entry.tpl"}}</li>
|
||||
{{/foreach}}
|
||||
|
||||
{{* The contacts who are not members of the contact group *}}
|
||||
{{foreach $groupeditor.contacts as $contact}}
|
||||
<li class="contacts">{{include file="contact_template.tpl"}}</li>
|
||||
<li class="contacts">{{include file="contact/entry.tpl"}}</li>
|
||||
{{/foreach}}
|
||||
|
||||
</ul>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{{if $contacts}}
|
||||
<ul id="viewcontact_wrapper{{if $id}}-{{$id}}{{/if}}" class="viewcontact_wrapper media-list">
|
||||
{{foreach $contacts as $contact}}
|
||||
<li>{{include file="contact_template.tpl"}}</li>
|
||||
<li>{{include file="contact/entry.tpl"}}</li>
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
{{else}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue