diff options
author | thomascube <thomas@roundcube.net> | 2012-01-05 16:15:37 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-05 16:15:37 +0000 |
commit | 7961f8c2c10c1a9f2dbaaaf4611478a13c0d7bb9 (patch) | |
tree | ca86af90b425fb772639503624c31cba56c5039e /skins/larry/templates | |
parent | 8304e5d76cd96d78a9cbddaf5d2407b5dc31d079 (diff) |
Embed address book widget on compose screen
Diffstat (limited to 'skins/larry/templates')
-rw-r--r-- | skins/larry/templates/compose.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/skins/larry/templates/compose.html b/skins/larry/templates/compose.html index e00d228a3..7f0998e6a 100644 --- a/skins/larry/templates/compose.html +++ b/skins/larry/templates/compose.html @@ -17,11 +17,18 @@ <div id="compose-contacts" class="uibox listbox"> <h2 class="boxtitle"><roundcube:label name="contacts" /></h2> <div class="scroller withfooter"> - + <roundcube:object name="adressbooks" id="directorylist" class="listing" /> + <roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" /> </div> <div class="boxfooter"> <roundcube:button command="add-recipient" prop="to" type="link" title="to" class="listbutton addto disabled" classAct="listbutton addto" innerClass="inner" content="To+" /><roundcube:button command="add-recipient" prop="cc" type="link" title="cc" class="listbutton addcc disabled" classAct="listbutton addcc" innerClass="inner" content="Cc+" /><roundcube:button command="add-recipient" prop="bcc" type="link" title="bcc" class="listbutton addbcc disabled" classAct="listbutton addbcc" innerClass="inner" content="Bcc+" /> </div> +<div class="boxpagenav"> + <roundcube:button command="firstpage" type="link" class="icon firstpage disabled" classAct="icon firstpage" title="firstpage" content="|&lt;" /> + <roundcube:button command="previouspage" type="link" class="icon prevpage disabled" classAct="icon prevpage" title="previouspage" content="&lt;" /> + <roundcube:button command="nextpage" type="link" class="icon nextpage disabled" classAct="icon nextpage" title="nextpage" content="&gt;" /> + <roundcube:button command="lastpage" type="link" class="icon lastpage disabled" classAct="icon lastpage" title="lastpage" content="&gt;|" /> +</div> </div> </div> |