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.
nextcloud-server/apps/contacts/templates/index.php

18 lines
676 B

14 years ago
<?php // Include Style and Script
OC_Util::addScript('contacts','interface');
OC_Util::addStyle('contacts','styles');
?>
<div id="contacts_contacts" class="leftcontent">
14 years ago
<ul>
<?php echo $this->inc("part.contacts"); ?>
14 years ago
</ul>
<a id="contacts_newcontact"><?php echo $l->t('Add Contact'); ?></a>
14 years ago
</div>
<div id="contacts_details" class="rightcontent" data-id="<?php echo $_['id']; ?>">
<?php echo $this->inc("part.details"); ?>
14 years ago
</div>
14 years ago
<?php if(count($_['addressbooks']) == 1 ): ?>
14 years ago
<?php echo $l->t('The path to this addressbook is %s', array(OC::$WEBROOT.'/apps/contacts/carddav.php/addressbooks/'.OC_User::getUser().'/'.$_['addressbooks'][0]['uri'])); ?>
14 years ago
<?php endif; ?>