source: subversion/trunk/roundcubemail/skins/default/templates/addressbook.html @ 1737

Last change on this file since 1737 was 1737, checked in by thomasb, 5 years ago

Better title for export icon + include source in export url

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<title><roundcube:object name="pagetitle" /></title>
5<roundcube:include file="/includes/links.html" />
6<link rel="stylesheet" type="text/css" href="/addresses.css" />
7<script type="text/javascript" src="/splitter.js"></script>
8</head>
9<body>
10
11<roundcube:include file="/includes/taskbar.html" />
12<roundcube:include file="/includes/header.html" />
13
14<div id="abooktoolbar">
15<roundcube:button command="add" imageSel="/images/buttons/add_contact_sel.png" imageAct="/images/buttons/add_contact_act.png" imagePas="/images/buttons/add_contact_pas.png" width="32" height="32" title="newcontact" />
16<roundcube:button command="delete" imageSel="/images/buttons/delete_sel.png" imageAct="/images/buttons/delete_act.png" imagePas="/images/buttons/delete_pas.png" width="32" height="32" title="deletecontact" />
17<roundcube:button command="compose" imageSel="/images/buttons/compose_sel.png" imageAct="/images/buttons/compose_act.png" imagePas="/images/buttons/compose_pas.png" width="32" height="32" title="composeto" />
18<roundcube:button command="import" imageSel="/images/buttons/adr_import_sel.png" imageAct="/images/buttons/adr_import_act.png" imagePas="/images/buttons/adr_import_pas.png" width="32" height="32" title="importcontacts" />
19<roundcube:button command="export" imageSel="/images/buttons/download_sel.png" imageAct="/images/buttons/download_act.png" imagePas="/images/buttons/download_pas.png" width="32" height="32" title="exportvcards" />
20</div>
21
22<div id="quicksearchbar">
23<roundcube:object name="searchform" type="search" results="5" id="quicksearchbox" /><roundcube:button command="reset-search" id="searchreset" image="/images/icons/reset.gif" title="resetsearch" />
24</div>
25
26<roundcube:if condition="config:ldap_public" />
27<div id="directorylist">
28<div id="groups-title"><roundcube:label name="groups" /></div>
29<roundcube:object name="directorylist" id="directories-list" />
30</div>
31
32<roundcube:else />
33<style type="text/css">
34#addresslist { left:20px; width:440px }
35#contacts-box { left:475px }
36#abookcountbar { left:20px }
37</style>
38
39<roundcube:endif />
40
41<div id="addresslist">
42<roundcube:object name="addresslist" id="contacts-table" class="records-table" cellspacing="0" summary="Contacts list" />
43</div>
44
45<script type="text/javascript">
46  var addrviewsplit = new rcube_splitter({id:'addressviewsplitter', p1: 'addresslist', p2: 'contacts-box', orientation: 'v'});
47  rcmail.add_onload('addrviewsplit.init()');
48</script>
49
50<div id="contacts-box">
51<roundcube:object name="addressframe" id="contact-frame" width="100%" height="100%" frameborder="0" src="/watermark.html" />
52</div>
53
54<div id="abookcountbar">
55<roundcube:button command="firstpage" imageSel="/images/buttons/first_sel.png" imageAct="/images/buttons/first_act.png" imagePas="/images/buttons/first_pas.png" width="11" height="11" title="firstpage" />
56<roundcube:button command="previouspage" imageSel="/images/buttons/previous_sel.png" imageAct="/images/buttons/previous_act.png" imagePas="/images/buttons/previous_pas.png" width="11" height="11" title="previouspage" />
57&nbsp;<roundcube:object name="recordsCountDisplay" />&nbsp;
58<roundcube:button command="nextpage" imageSel="/images/buttons/next_sel.png" imageAct="/images/buttons/next_act.png" imagePas="/images/buttons/next_pas.png" width="11" height="11" title="nextpage" />
59<roundcube:button command="lastpage" imageSel="/images/buttons/last_sel.png" imageAct="/images/buttons/last_act.png" imagePas="/images/buttons/last_pas.png" width="11" height="11" title="lastpage" />
60</div>
61
62</body>
63</html>
Note: See TracBrowser for help on using the repository browser.