summaryrefslogtreecommitdiffstats
path: root/apps/contacts/templates/index.php
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-08-09 13:53:58 +0200
committerJakob Sack <kde@jakobsack.de>2011-08-09 13:53:58 +0200
commit76fc062f27a178be97b2f4bf285f7f07c6361f60 (patch)
treed69727c82e394f22bd08be14d146890592da3d70 /apps/contacts/templates/index.php
parent4e5b6f72c17ec361757495e89d3f1929f3981dbb (diff)
downloadnextcloud-server-76fc062f27a178be97b2f4bf285f7f07c6361f60.tar.gz
nextcloud-server-76fc062f27a178be97b2f4bf285f7f07c6361f60.zip
Some more work on the address book
Diffstat (limited to 'apps/contacts/templates/index.php')
-rw-r--r--apps/contacts/templates/index.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/apps/contacts/templates/index.php b/apps/contacts/templates/index.php
index ca189cb4c8a..e6dd45739bc 100644
--- a/apps/contacts/templates/index.php
+++ b/apps/contacts/templates/index.php
@@ -3,7 +3,8 @@ OC_Util::addScript('contacts','interface');
OC_Util::addStyle('contacts','styles');
?>
-<div class="contacts_addressbooks">
+<?php
+/*<div class="contacts_addressbooks">
<div class="contacts_addressbooksexpander">
Addressbooks
</div>
@@ -13,12 +14,14 @@ OC_Util::addStyle('contacts','styles');
<?php endforeach; ?>
<br>To use this addressbook, use .../apps/contacts/carddav.php/addressbooks/USERNAME/addressbookname.php
</div>
-</div>
-<div class="contacts_contacts leftcontent">
+</div>*/
+?>
+<div id="contacts_contacts" class="leftcontent">
<ul>
- <?php echo $this->inc("_contacts"); ?>
+ <?php echo $this->inc("part.contacts"); ?>
</ul>
+ <a id="contacts_newcontact"><?php echo $l->t('Add Contact'); ?></a>
</div>
-<div class="contacts_details rightcontent">
- <?php echo $this->inc("_details"); ?>
+<div id="contacts_details" class="rightcontent" x-id="<?php echo $_['id']; ?>">
+ <?php echo $this->inc("part.details"); ?>
</div>