2016-04-20 02:59:32 +02:00
|
|
|
|
2017-12-15 18:09:04 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
var dropContact = "{{$contact_drop_confirm}}";
|
|
|
|
</script>
|
|
|
|
|
2018-12-14 04:35:51 +01:00
|
|
|
{{$tabs nofilter}}
|
2016-04-20 02:59:32 +02:00
|
|
|
|
2017-02-03 19:18:10 +01:00
|
|
|
<div id="contacts" class="generic-page-wrapper">
|
2016-04-20 02:59:32 +02:00
|
|
|
|
2016-05-20 01:50:56 +02:00
|
|
|
{{* The page heading with it's contacts counter *}}
|
|
|
|
<h2 class="heading">{{$header}} {{if $total}} ({{$total}}) {{/if}}</h2>
|
2016-04-20 02:59:32 +02:00
|
|
|
|
|
|
|
{{if $finding}}<h4>{{$finding}}</h4>{{/if}}
|
|
|
|
|
2016-04-20 03:15:35 +02:00
|
|
|
{{* The search input field to search for contacts *}}
|
2016-04-20 02:59:32 +02:00
|
|
|
<div id="contacts-search-wrapper">
|
2016-04-21 00:00:58 +02:00
|
|
|
<form id="contacts-search-form" class="navbar-form" role="search" action="{{$cmd}}" method="get" >
|
|
|
|
<div class="row">
|
2018-07-10 00:36:50 +02:00
|
|
|
<div class="form-group form-group-search">
|
2018-12-14 04:28:12 +01:00
|
|
|
<input type="text" name="search" id="contacts-search" class="search-input form-control form-search" onfocus="this.select();" value="{{$search}}" placeholder="{{$desc nofilter}}"/>
|
2018-07-10 00:36:50 +02:00
|
|
|
<button class="btn btn-default btn-sm form-button-search" type="submit" id="contacts-search-submit">{{$submit}}</button>
|
2016-04-20 02:59:32 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<div id="contacts-search-end"></div>
|
|
|
|
|
2016-04-20 03:15:35 +02:00
|
|
|
{{* we need the form container to make batch actions work *}}
|
2018-10-13 13:29:56 +02:00
|
|
|
<form name="batch_actions_submit" action="{{$baseurl}}/contact/batch/" method="POST">
|
2016-04-20 23:08:01 +02:00
|
|
|
|
|
|
|
{{* we put here a hidden input element. This is needed to transmit the batch actions with javascript*}}
|
2018-12-14 04:28:12 +01:00
|
|
|
<input type="hidden" class="batch-action no-input fakelist" name="batch_submit" value="{{$l}}">
|
2016-04-20 23:08:01 +02:00
|
|
|
|
2016-04-20 03:15:35 +02:00
|
|
|
{{* We put the contact batch actions in a dropdown menu *}}
|
2016-04-20 02:59:32 +02:00
|
|
|
<ul class="nav nav-pills preferences">
|
|
|
|
<li class="dropdown pull-right">
|
2017-10-20 15:21:42 +02:00
|
|
|
<button type="button" class="btn btn-link btn-sm dropdown-toggle" id="BatchActionDropdownMenuTools" data-toggle="dropdown" aria-expanded="false">
|
2016-06-25 12:21:13 +02:00
|
|
|
<i class="fa fa-angle-down"></i> {{$h_batch_actions}}
|
2017-03-15 04:47:02 +01:00
|
|
|
</button>
|
2016-04-20 02:59:32 +02:00
|
|
|
<ul class="dropdown-menu pull-right" role="menu" aria-labelledby="BatchActionDropdownMenuTools">
|
|
|
|
{{foreach $batch_actions as $n=>$l}}
|
2016-04-20 23:08:01 +02:00
|
|
|
<li role="menuitem">
|
2017-12-15 18:09:04 +01:00
|
|
|
{{* call the js batch_submit_handler. Have a look at the file mod_contacts.js *}}
|
2017-03-15 04:47:02 +01:00
|
|
|
<button type="button" class="btn-link" onclick="batch_submit_handler('{{$n}}', '{{$l}}')">{{$l}}</button>
|
2016-04-20 02:59:32 +02:00
|
|
|
</li>
|
|
|
|
{{/foreach}}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2016-04-28 21:35:33 +02:00
|
|
|
<div class="clear"></div>
|
|
|
|
<div id="contact-list">
|
|
|
|
{{* format each contact with the contact_template.tpl *}}
|
|
|
|
<ul id="viewcontact_wrapper" class="viewcontact_wrapper media-list">
|
|
|
|
{{foreach $contacts as $contact}}
|
|
|
|
<li>{{include file="contact_template.tpl"}}</li>
|
|
|
|
{{/foreach}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2017-12-15 18:09:04 +01:00
|
|
|
<div id="contact-edit-end" class="clear"></div>
|
2016-04-20 02:59:32 +02:00
|
|
|
</form>
|
|
|
|
|
2018-12-14 04:35:51 +01:00
|
|
|
{{$paginate nofilter}}
|
2016-04-20 02:59:32 +02:00
|
|
|
</div>
|