mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
<section>
|
|
<h3>{$c->__('edit.title')}</h3>
|
|
<form name="manage">
|
|
<div>
|
|
<input
|
|
name="alias"
|
|
id="alias"
|
|
class="tiny"
|
|
placeholder="{$c->__('edit.alias')}"
|
|
value="{$contact->rostername}"/>
|
|
<label for="alias">{$c->__('edit.alias')}</label>
|
|
</div>
|
|
<div>
|
|
<datalist id="group" style="display: none;">
|
|
{if="is_array($groups)"}
|
|
{loop="$groups"}
|
|
<option value="{$value}"/>
|
|
{/loop}
|
|
{/if}
|
|
</datalist>
|
|
<input
|
|
name="group"
|
|
list="group"
|
|
id="alias"
|
|
class="tiny"
|
|
placeholder="{$c->__('edit.group')}"
|
|
value="{$contact->groupname}"/>
|
|
<label for="group">{$c->__('edit.group')}</label>
|
|
</div>
|
|
<input type="hidden" name="jid" value="{$contact->jid}"/>
|
|
</form>
|
|
</section>
|
|
<div>
|
|
<a onclick="Dialog.clear()" class="button flat">
|
|
{$c->__('button.close')}
|
|
</a>
|
|
<a
|
|
name="submit"
|
|
class="button flat"
|
|
onclick="{$submit} Dialog.clear()">
|
|
{$c->__('button.edit')}
|
|
</a>
|
|
</div>
|