diff options
Diffstat (limited to 'view/tpl/groupeditor.tpl')
-rwxr-xr-x | view/tpl/groupeditor.tpl | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/view/tpl/groupeditor.tpl b/view/tpl/groupeditor.tpl index c79bb0a2a..94c275c7e 100755 --- a/view/tpl/groupeditor.tpl +++ b/view/tpl/groupeditor.tpl @@ -1,16 +1,12 @@ -<div id="group"> -<h3>{{$groupeditor.label_members}}</h3> -<div id="group-members" class="contact_list"> -{{foreach $groupeditor.members as $c}} {{$c}} {{/foreach}} -</div> -<div id="group-members-end"></div> -<hr id="group-separator" /> -</div> - -<div id="contacts"> -<h3>{{$groupeditor.label_contacts}}</h3> -<div id="group-all-contacts" class="contact_list"> -{{foreach $groupeditor.contacts as $m}} {{$m}} {{/foreach}} -</div> -<div id="group-all-contacts-end"></div> +<div id="contacts" class="list-group float-left w-50 pr-2"> + <h3>{{$groupeditor.label_contacts}}</h3> + <div id="group-all-contacts" class="contact_list"> + {{foreach $groupeditor.contacts as $m}} {{$m}} {{/foreach}} + </div> +</div> +<div id="group" class="list-group float-right w-50"> + <h3>{{$groupeditor.label_members}}</h3> + <div id="group-members" class="contact_list"> + {{foreach $groupeditor.members as $c}} {{$c}} {{/foreach}} + </div> </div> |