32ef5623ab
* Improve group-editing and edit-navigation. Use icons next to groups and header for navigation to editing groups and adding new groups. Also use icon from group-sidebar for editing groups. * Unify look&feel of contact search bars. * Remove nogroup page and replace with /group/none. * Make sure proper items are selected in aside. * Use icon instead of link for 'View Contacs' on profile page. * Fix none-working /group/none. * Fix highlighting for everyone in group aside.
27 lines
684 B
Smarty
27 lines
684 B
Smarty
|
|
<h2>{{$title}}</h2>
|
|
|
|
|
|
{{if $editable == 1}}
|
|
<div id="group-edit-wrapper" >
|
|
<form action="group/{{$gid}}" id="group-edit-form" method="post" >
|
|
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
|
|
|
|
{{include file="field_input.tpl" field=$gname}}
|
|
{{if $drop}}{{$drop}}{{/if}}
|
|
<div id="group-edit-submit-wrapper" >
|
|
<input type="submit" name="submit" value="{{$submit|escape:'html'}}" >
|
|
</div>
|
|
<div id="group-edit-select-end" ></div>
|
|
</form>
|
|
</div>
|
|
{{/if}}
|
|
|
|
|
|
{{if $groupeditor}}
|
|
<div id="group-update-wrapper">
|
|
{{include file="groupeditor.tpl"}}
|
|
</div>
|
|
{{/if}}
|
|
{{if $desc}}<div class="clear" id="group-edit-desc">{{$desc}}</div>{{/if}}
|