diff options
author | alecpl <alec@alec.pl> | 2010-11-04 09:59:55 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-04 09:59:55 +0000 |
commit | 83ba22c77b8790d8cbea8c684c4e1a0c431b83d6 (patch) | |
tree | d79c208d57a1f4991b8db2fa887333b6cab7644f /skins/default/templates/identityedit.html | |
parent | c7a815d1a4bc6020c924d590ea4157f4d2ec2963 (diff) |
- Unify template files naming
Diffstat (limited to 'skins/default/templates/identityedit.html')
-rw-r--r-- | skins/default/templates/identityedit.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/skins/default/templates/identityedit.html b/skins/default/templates/identityedit.html new file mode 100644 index 000000000..24c37a629 --- /dev/null +++ b/skins/default/templates/identityedit.html @@ -0,0 +1,56 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +<script type="text/javascript" src="/functions.js"></script> +<script type="text/javascript" src="/splitter.js"></script> +<style type="text/css"> +#identities-list { width: <roundcube:exp expression="!empty(cookie:identviewsplitter) ? cookie:identviewsplitter-5 : 295" />px; } +#identity-details { left: <roundcube:exp expression="!empty(cookie:identviewsplitter) ? cookie:identviewsplitter+5 : 305" />px; + <roundcube:exp expression="browser:ie ? ('width:expression((parseInt(this.parentNode.offsetWidth)-'.(!empty(cookie:identviewsplitter) ? cookie:identviewsplitter+5 : 305).')+\\'px\\');') : ''" /> +} +</style> + +</head> +<body> + +<roundcube:include file="/includes/taskbar.html" /> +<roundcube:include file="/includes/header.html" /> +<roundcube:include file="/includes/settingstabs.html" /> + +<div id="mainscreen"> + +<div id="identities-list"> +<div id="identity-title" class="boxtitle"><roundcube:label name="identities" /></div> +<div class="boxlistcontent"> +<roundcube:object name="identitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" noheader="true" editIcon="" /> +</div> +<div class="boxfooter"> +<roundcube:button command="add" type="link" title="newidentity" class="buttonPas addgroup" classAct="button addgroup" content=" " condition="config:identities_level:0<2" /> +</div> +</div> + +<script type="text/javascript"> + var identviewsplit = new rcube_splitter({id:'identviewsplitter', p1: 'identities-list', p2: 'identity-details', orientation: 'v', relative: true, start: 300 }); + rcmail.add_onload('identviewsplit.init()'); +</script> + +<div id="identity-details"> +<div id="identity-title" class="boxtitle"><roundcube:object name="steptitle" /></div> + +<div class="boxcontent"> +<roundcube:object name="identityform" size="40" textareacols="60" textarearows="6" /> +<p> +<roundcube:button command="delete" type="input" class="button" label="delete" condition="env:action=='edit-identity'" style="margin-right:0.5em" /> +<roundcube:button command="save" type="input" class="button mainaction" label="save" /> +</p> +</div> +<script type="text/javascript">rcube_init_tabs('identity-details')</script> + +</div> + +</div> + +</body> +</html> |